Label.Text
string / void
Label.TextColor
Color3 / void
Label.Font
Enum.Font or string / void
Label.TextSize
number / void
Label.Visible
boolean / void
Label.Text = "New Label"
print(Label.Text)
Label.TextColor = Color3.fromRGB(255, 255, 255)
print(Label.TextColor)
Label.Font = Enum.Font.Arial
Label.Font = "Arial"
print(Label.Font)
Last updated 3 years ago
Label.TextSize = 15
print(Label.TextSize)
Label.Visible = true
print(Label.Visible)