# Drawing.new("Image") 🖼️

Draws an image on the screen.

# Key Properties

Property Type Description
Data string I don't know

# Example

local myImage = Drawing.new("Image")
myImage.Visible = true
myImage.Data = "rbxassetid://123456789" -- Dosen't work
myImage.Position = Vector2(450, 300)
myImage.Size = Vector2(100, 100) -- Adjust to image aspect ratio
-- Color can sometimes tint the image
-- myImage.Color = Color3(0.8, 0.8, 1) -- Slight blue tint
myImage.Transparency = 0.1 -- Slightly transparent
myImage.ZIndex = 6

-- To remove later:
-- myImage:Remove()