Window.Text
string / void
Window.TextColor
Color3 / void
Window.Font
Enum.Font or string / void
Window.Text = "New Window"
print(Window.Text)
Window.TextColor = Color3.fromRGB(255, 255, 255)
print(Window.TextColor)
Window.Font = Enum.Font.Arial
Window.Font = "Arial"
print(Window.Font)
Last updated 3 years ago