Button.Text
string / void
Button.TextColor
Color3 / void
Button.TextSize
number / void
Button.Font
Enum.Font or string / void
Button.Visible
boolean / void
Button:Click()
Callback
Button.Text = "New Button"
print(Button.Text)
Button.TextColor = Color3.fromRGB(255, 255, 255)
print(Button.TextColor)
Button.TextSize = 15
print(Button.TextSize)
This will execute the code inside the callback.
Last updated 3 years ago
Button.Font = Enum.Font.Arial
Button.Font = "Arial"
print(Button.Font)
Button.Visible = false
print(Button.Visible)