Removes every drawing object your script made with Drawing.new.
Drawing.clear(): ()
This is the real “remove all my drawings” call. It is not the same function as cleardrawcache - that one only clears an internal cache and leaves your drawings alive.
for i = 1, 10 do local circle = Drawing.new("Circle") circle.Radius = 50 circle.Position = Vector2.new(100 * i, 100) circle.Visible = trueendtask.wait(1)Drawing.clear()
Always check parameters and return values when working with this library function.