Skip to main content
Creates a new drawing object that renders on top of all UIs, including those that are parented under CoreGui.
The drawing is not part of the Roblox UI, so game scripts can’t see it. Set its properties (like Position, Color, Visible) to control how it looks, and call :Remove() when you’re done with it.

Parameters

Returns

DrawingObject - the new drawing. Every type shares the base properties (Visible, ZIndex, Transparency, Color) plus the ones specific to its type.

Example

A red circle in the middle of common screen space, then cleaned up.
Drawing objects render outside Roblox’s standard UI layer and must be manually destroyed with :Destroy().