ImageLabel

ImageLabel : GuiObject

Properties

Image

string

The content id of the image to display

Code Samples

local ScreenGui = script.Parent
local ImageLabel = ScreenGui.ImageLabel

ImageLabel.Image = "ovdrassetid://1234"

ImageTransparency

number

ImageTransparency controls the transparency level of the displayed image, ranging from 0 to 1

Code Samples

local ScreenGui = script.Parent
local ImageLabel = ScreenGui.ImageLabel

ImageLabel.ImageTransparency = 0.5

ImageColor3

Color3

ImageColor3 changes the color tint of the image. It can be used to apply a colored overlay or adjust the hue of the image.

Code Samples

ImageContent

Content

The ImageContent property specifies the source content used to render the image in the ImageLabel. It accepts a content URL or asset ID reference that links to the desired image. This property allows dynamic image assignment, enabling developers to load and display external or in-game assets efficiently.

Code Samples

Methods

Events

Last updated