#
Drawing.new("Text")
📄
Draws text on the screen.
#
Key Properties
#
Common Properties
Uses common properties like Visible
, Color
, Transparency
, Position
, ZIndex
. See Common Properties.
#
Example
local myLabel = Drawing.new("Text")
myLabel.Visible = true
myLabel.Text = "Hello, World!"
myLabel.Color = Color3(1, 1, 0) -- Yellow
myLabel.Size = 18 -- Font size
myLabel.Position = Vector2(200, 50)
myLabel.Center = true
myLabel.Outline = true
myLabel.ZIndex = 5
-- myLabel:Remove()