UI appearance modifiers

By utilizing appearance modifiers, you can further customize the appearance of your GuiObjects.

Gradient

The UIGradient object applies a color and transparency gradient to its parent GuiObject.

You can configure the gradient by:

Color sequence

To set a gradient's color sequence:

  1. In the Explorer window, select the UIGradient.

  2. In the Properties window, click inside the Color property field, then click the button to the right of the input box.

  3. Each triangle on the bottom axis of the color sequence is a keypoint that determines the color value at that point.

    Color sequence popup from white to white
    1. Click a keypoint in the color sequence to select or reposition it, or add another keypoint by clicking anywhere on the graph.
    2. Click the small square next to Color to open the Colors pop-up window, then select the desired color for the keypoint.
    3. If needed, repeat these steps to add/adjust colors across the graph.

Transparency

To adjust a gradient's transparency across its range:

  1. In the Explorer window, select the UIGradient.

  2. In the Properties window, click inside the Transparency property field, then click the button to the right of the input box.

  3. Each square across the number sequence graph is a keypoint that determines the transparency value at that point.

    Keypoints labeled in number sequence popup
    1. Click a keypoint in the number sequence to select or reposition it, or add another keypoint by clicking anywhere on the graph.
    2. Enter a specific time/value combination through the Time and Value inputs.
    3. If needed, repeat these steps to add/adjust transparency levels across the graph.

Type

A gradient's Type property sets its type from among Linear, Radial, or Conical.

  • Linear — The color/transparency sequence transitions in a straight line across the element. The direction is controlled by its rotation and the position by its offset. This is the default.

  • Radial — The color/transparency sequence radiates outward from the element's center, optionally shifted by Offset. The radius is defined by the average of the element's width and height divided by two, effectively (width+height)/4\text{(width+height)/4}. Rotation has no effect on a radial gradient.

  • Conical — The color/transparency sequence sweeps clockwise around the center of the element, optionally shifted by Offset. Rotation controls the starting and ending angle of the sweep. By default this sweeps from 0 to 360 degrees, but Scale values less than 1 can reduce that angle.

Offset and rotation

The Offset and Rotation properties let you adjust the gradient's control points and its angle. As illustrated in the following diagrams, Offset is based on a percentage of the parent's width or height, and both positive or negative values are valid.

Offset.X = 0.25
Offset.X = -0.25

Similarly, when you rotate the gradient, the control points also rotate:

Scale

A gradient's Scale multiplies the extent of the gradient, controlling how much of the color/transparency sequence is visible within the element.

  • When Scale is less than 1, the gradient spans less than the full extent. The remaining color/transparency is filled in according to the TileMode property.

  • When Scale is greater than 1, the gradient spans more than the full extent and only a part of the color/transparency is visible.

Scale = 1
Scale = 0.25
Scale = 1.8

Tile Mode

The TileMode property sets how the gradient repeats when the full sequence does not fully cover the parent element.

  • Clamp — Default mode where the color/transparency values at the start and end of the sequence extend infinitely, so the start values fill any area before the gradient and the end values fill any area after it.

  • Repeat — The gradient repeats by wrapping the color/transparency sequence tiles seamlessly from end back to start. This can produce a visible seam if the first and last color/transparency values in the sequence differ.

  • Mirror — The gradient reflects at each boundary so the color/transparency sequence ping‑pongs. This produces a smooth repetition with no seam, since the direction reverses at each tile edge.

Stroke

The UIStroke instance applies an outline to text or a border. Key features include:

Thickness

You can set the stroke width through the Thickness property which is measured in pixels (default) or scaled relative to the parent, depending on the modifier's StrokeSizingMode. If stroke is on text and StrokeSizingMode is set to ScaledSize, thickness is relative to the font size.

Color or gradient

You can set the stroke color through the Color property, as well as insert a child UIGradient instance to create gradient strokes.

UIStroke.Color = (0, 95, 225)
UIStroke with UIGradient child

Text outline or border

Depending on its parent type, UIStroke operates as either a text outline or as a border. When you parent UIStroke to a text object like TextLabel, it applies to the text's outline; when you parent UIStroke to other GuiObjects, it applies to the border.

TextLabel with UIStroke child
Frame with UIStroke and UICorner children

When applied to a text object, you can override the default stroke behavior by the ApplyStrokeMode property, letting you apply the stroke to the object's bounds instead of the text itself. You can even control the text outline and border independently by parenting two UIStroke instances to a text object, one set to Contextual and the other to Border.

Border position/offset

BorderStrokePosition sets the stroke's position relative to its parent's border and BorderOffset lets you specify an additional offset to the stroke's position.

BorderOffset = (0.15, 0)
BorderOffset = (0, -16)

Transparency

The Transparency property sets the stroke transparency independently of the parent object's BackgroundTransparency or TextTransparency. This allows you to render text and borders that are "hollow" (consisting of only an outline).

Corner style

The LineJoinMode property lets you control how corners are interpreted. It accepts a value of either Round, Bevel, or Miter.

Layering

To layer multiple sibling UIStroke instances on a GuiObject from front to back, you can utilize the ZIndex property. Those with a lower ZIndex render under (behind) those with a higher ZIndex.

Note that the rendering order for UIStroke instances with the same ZIndex is undefined. Do not apply multiple UIStroke instances with the same index if their rendering order matters.

Corners

The UICorner instance applies deformation to the corners of its parent GuiObject. You can control the applied radius through the CornerRadius property using either Scale or Offset.

Scale rounds the corners to a percentage based on the total length of the shortest edge of the parent, meaning that a scale of 0.5 or higher deforms the parent into a "pill" shape, regardless of its width or height. Offset rounds the corners to a specific number of pixels, regardless of the width/height of the parent.

Scale = 0.25  ·  Offset = 0
Scale = 0.5  ·  Offset = 0
Scale = 0  ·  Offset = 32
Scale = 0  ·  Offset = 64

You can also control individual corners through the TopLeftRadius, TopRightRadius, BottomRightRadius, and BottomLeftRadius properties.

TopLeftRadius = (0, 0)
TopRightRadius = (0, 48)
BottomRightRadius = (0, 48)
BottomLeftRadius = (0, 0)

Padding

A UIPadding object applies top, bottom, left, and/or right padding to the contents of the parent GuiObject. For example, you can move the text inside a text label downward or upward by applying an offset to the modifier's PaddingBottom property.

PaddingBottom = (0, -20)
PaddingBottom = (0, 30)

Shadow

A UIShadow object renders a drop shadow behind its parent UI instance. Key features include:

Bluriness

The BlurRadius property determines the shadow's blurriness. A larger value makes the shadow's edges appear softer. Note that the scale factor of this UDim property is relative to the parent's width or height, whichever is shorter.

BlurRadius = (0, 0)
BlurRadius = (0.75, 0)

Color and transparency

The Color property determines the shadow's color, while Transparency sets the shadow's transparency with 0 being fully opaque and 1 being fully transparent.

Color = (255, 255, 255)  ·  Transparency = 0.6
Color = (50, 0, 35)  ·  Transparency = 0

Offset and spread

The Offset property moves the shadow relative to the parent's position, while Spread expands or shrinks the shadow relative to the parent's size.

Offset = {0, -14}, {0, 6}
Offset = {0.1, 0}, {-0.15, 0}
Spread = {0, 10}, {0, 10}
Spread = {0.3, 0}, {0.3, 0}
©2026 Roblox Corporation. Roblox, the Roblox logo and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.