cleardrawcache
Remove all active Drawing objects created with Drawing.new at once.
function cleardrawcache(): ()Usage
Create drawings then clear all at once
local circle = Drawing.new("Circle")
circle.Radius = 50
circle.Visible = true
local label = Drawing.new("Text")
label.Text = "ESP"
label.Visible = true
task.wait(3)
cleardrawcache() -- removes both objects instantly