Drawing.new
Creates a new low-level screen overlay drawing object.
function Drawing.new(typetypestringThe type of drawing object to create: "Line", "Circle", "Square", "Text", "Triangle", "Quad", or "Image".: string): DrawingObjectDrawingObjectA new drawing object with properties specific to the requested type.Usage
Draw a text label
local label = Drawing.new("Text")
label.Text = "ESP Ready"
label.Size = 16
label.Color = Color3.fromRGB(255, 255, 255)
label.Position = Vector2.new(10, 10)
label.Visible = true
-- Cleanup
label:Remove()Draw an ESP box
local box = Drawing.new("Square")
box.Size = Vector2.new(60, 80)
box.Position = Vector2.new(100, 100)
box.Color = Color3.fromRGB(255, 255, 255)
box.Thickness = 1
box.Filled = false
box.Visible = true