Drawing.new.
cleardrawcache - that one only clears an internal cache and leaves your drawings alive.
Returns
void
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Drawing.new.
Drawing.clear(): ()
cleardrawcache - that one only clears an internal cache and leaves your drawings alive.
void
Drawing.clear()
for i = 1, 10 do
local circle = Drawing.new("Circle")
circle.Radius = 50
circle.Position = Vector2.new(100 * i, 100)
circle.Visible = true
end
task.wait(1)
Drawing.clear()