Button
Just a button
Example
local BtnExapmle = PluginComponents.Component.Btn.New()
.SetBackgroundColor(PluginComponents.Color.Blue)
.SetText("Click me!")
.MouseButton1Click:Connect(function()
print("Click")
end)
Events
.MouseButton1Click:Connect
.MouseButton2Click:Connect
Methods
.SetBackgroundColor(color3)
.SetText(val)
.Disabled()
.UnDisabled()
.RemovePaddingAndText()
Inherited from BaseComponent
Last updated