getrenderproperty
function getrenderproperty(drawing: Drawing, property: string): anyParameters
Example
local circle = Drawing.new("Circle")
circle.Radius = 50
print(getrenderproperty(circle, "Radius")) -- Output: 50
print(getrenderproperty(circle, "Visible")) -- Output: falseLast updated