The built-in Style Editor is a comprehensive tool that allows you to create, manage, and apply UI styles for Roblox games through a combination of tokens, design sheets, style rules, and themes.
Access the Style Editor via the UI tab.

Once open, click the Create Design button to generate a base style set.

Style tokens
Style tokens, defined through attributes of a token StyleSheet, represent UI property variables that can be used across styles and components; for example, there could be a common color for a Frame.BackgroundColor3, TextLabel.TextColor3, and UIStroke.Color. Tokens are comparable to CSS variables.
Create a new token style sheet:
- In the left column of the Style Editor, hover over Tokens, click the ⊕, and select New Token StyleSheet.
- Rename the new sheet to TokenSheet.

With the new token sheet selected, create several tokens by clicking Add a Token… in the main panel. These tokens will be used throughout this guide for both rules and themes.

Token Name Type Value Gold Color3 #ffcc00 Magenta Color3 #ff0099 Orange Color3 #dd6030 Oswald Font Oswald Rad20 UDim 0, 20 RectL UDim2 0, 300, 0, 160 SquareL UDim2 0, 200, 0, 200 Text24 number 24 Text32 number 32 
Design sheets
A design style sheet aggregates style rules and can be linked to DataModel trees to apply style properties to UI instances. Only one StyleSheet can apply to a given tree, although you can use themes to swap related styles across your UI, a concept covered later in this guide.
A prepopulated design sheet named StyleSheet is created via the Create Design button. It contains class rules for common UI objects such as Frame and TextLabel. It also contains two StyleDerive instances which derive (inherit) tokens and styles from the base style sheet for use in your custom styling configurations.

Once you have a design sheet, you can set up a test on‑screen container to use with the Style Editor, or an in‑game container if desired.
Hover over StarterGui in the Explorer and insert a ScreenGui.
Confirm that a new StyleLink instance appears under the ScreenGui with its StyleSheet property set to the StyleSheet design sheet.


Style rules
Style rules apply to every instance that matches the rule's Selector definition to match characteristics such as class name, instance tag, and hierarchy relationships. At a high level, instance matching and modification via a rule's Selector definition operates through:
- Roblox class selectors which target all instances of a given UI class, for example Frame, ImageLabel, TextButton, etc.
- GuiObject state selectors which correspond to one of the four Enum.GuiState enum values such as Hover.
- Instance name selection according to the value of the UI object's Instance.Name.
Class rule
A style class selector targets all instances of a given UI class. The following rule setup styles all Frames with a uniform background color and size.
In the left column of the Style Editor, select Frame in the UI Elements branch.

Link two previously created style tokens to two Frame properties:
Property Style Token BackgroundColor3 $Magenta Size $SquareL - Click Add a Property… in the main panel and select the necessary property. Note that you can type keywords to more quickly find properties in the dropdown menu.
- Instead of entering a static value, click the ⋮ button and select Link Token.
- Click the $ which appears in the value field and select the proper associated token.


Insert a new Frame into the ScreenGui you previously created and linked. The styles you defined should automatically apply to it.

Tag rule
Instance tag selectors target specific UI objects tagged through CollectionService. The following rule setup styles a TextButton tagged as ButtonPrimary with a custom background color, font, and text size.
In the left column of the Style Editor, hover over the StyleSheet sheet, click the ⋮ button, and navigate through to New ⟩ Tag.

Rename the new tag rule .ButtonPrimary (note the leading .).

Link three previously created style tokens to three TextButton properties:
Property Style Token BackgroundColor3 $Gold FontFace $Oswald TextSize $Text32 - Click Add a Property… in the main panel and select the necessary property. Remember that you can type keywords to more quickly find properties in the dropdown menu.
- Instead of entering a static value, click the ⋮ button and select Link Token.
- Click the $ which appears in the value field and select the proper associated token.


Insert a new TextButton into the ScreenGui you previously created and linked and tag it as ButtonPrimary. A convenient shortcut is as follows:
- Make sure the new TextButton is selected in the Explorer.
- With the .ButtonPrimary tag rule selected in the left column of the Style Editor, click Apply Tag in the main panel. The styles you defined should automatically apply to the button.


UI modifier
Instance modifier selectors apply phantom UIComponents such as UICorner or UIStroke to further style an object. The following rule setup styles a TextLabel with a custom text size and rounded corners.
In the left column of the Style Editor, select TextLabel in the UI Elements branch.

Link a previously created style token to the TextSize property:
- Click Add a Property… in the main panel and select the TextSize property. Remember that you can type keywords to more quickly find properties in the dropdown menu.
- Instead of entering a static value, click the ⋮ button and select Link Token.
- Click the $ which appears in the value field and select the $Text32 token.


A pseudo instance is required to configure and apply rounded corners to other elements. To create one:
In the left column, hover over TextLabel, click the ⋮ button, and navigate through to New ⟩ Pseudo Instance ⟩ UICorner.

A new UICorner pseudo instance appears under the TextLabel element in the left column.

With the new UICorner instance selected in the left column, link a previously created style token to the CornerRadius property:
- Click Add a Property… in the main panel and select the CornerRadius property.
- Instead of entering a static value, click the ⋮ button and select Link Token.
- Click the $ which appears in the value field and select the $Rad20 token.

Insert a new TextLabel into the ScreenGui you previously created and linked. The styles you defined should automatically apply to it.

State rule
GuiObject state selectors correspond to one of the four GuiState enum values such as Hover, letting you automatically configure style changes for interactive states. The following rule setup creates a hover state of -4 degrees rotation for all ImageButtons.
In the left column of the Style Editor, select ImageButton in the UI Elements branch.

Click the ⋮ button and navigate through to New ⟩ GuiState ⟩ Hover.

A new Hover state modifier instance appears under the ImageButton element in the left column.

With the new Hover modifier selected in the left column, click Add a Property… in the main panel and select Rotation. Remember that you can type keywords to more quickly find properties in the dropdown menu.
Enter -4 in the property's value field.

Insert a new ImageButton into the ScreenGui you previously created and linked. When you hover over the button in the viewport, it should rotate 4 degrees counterclockwise.

Style queries
Style queries, similar to CSS container and media queries, allow you to apply conditional logic to your UI based on container size, input type, or other factors. The Style Editor provides a streamlined workflow to create both the query logic (conditions) and the resulting styles as a unified set.
Built-in queries
Some StyleQuery conditions are very common, such as changing properties based on the ViewportDisplaySize. To simplify this, the Style Editor includes built‑in queries which allow you to create conditional rules without needing a pseudo or real instance of a StyleQuery; instead, you simply use a query rule with a predefined selector like ViewportDisplaySizeSmall.
The following steps demonstrate how to generate built‑in queries for a TextLabel to handle Small, Medium, and Large viewport sizes.
In the left column of the Style Editor, hover over TextLabel, click the ⋮ button, and navigate through to New ⟩ StyleQuery ⟩ Builtin ⟩ ViewportDisplaySize.

This creates a Queries folder under the TextLabel rule containing three query rules:
- @ViewportDisplaySizeLarge — Define properties that apply when the viewport is Large.
- @ViewportDisplaySizeMedium — Define properties that apply when the viewport is Medium.
- @ViewportDisplaySizeSmall — Define properties that apply when the viewport is Small.

To verify the queries, use the Device Emulator to test how the UI responds to different resolutions across three distinct devices:
Change the Device in the Device Emulator to see the text change in real time.
Custom query
You can add a style query to any existing rule to create responsive UI that adapts to its container. The following setup configures a TextLabel to automatically change its appearance only when it expands to a width of 400 pixels or more.
In the left column of the Style Editor, hover over TextLabel, click the ⋮ button, and navigate through to New ⟩ StyleQuery ⟩ Custom.

This action creates a Queries folder under the TextLabel rule containing two linked items:
- ::StyleQuery pseudo-instance rule where you define the Conditions.
- @StyleQuery rule where you define the Properties to apply when those conditions are met.

Select the parent TextLabel rule in the main panel and define the following default properties:
Property Value BackgroundColor3 $Magenta Text Default Text Select the ::StyleQuery rule in the main panel, click Add a Condition…, and configure the following:
Condition Value MinSize 400, 0 Select the @StyleQuery rule in the main panel and set the properties that should apply when the query is active:
Property Value BackgroundColor3 $Gold Text Large Text
To verify the query, you can manually resize a TextLabel in the viewport.
Adjust its width to see the style swap in real-time.
While the TextLabel width is smaller, the MinSize condition is not met and the label uses its default background color and text.

Style transitions
Style transitions, comparable to CSS transitions, let you tween property values over a set duration.
Default
To tween many UI properties with the same parameters, you can set a default transition that applies to all properties unless another transition is explicitly set for a specific property.
Select TextButton in the UI Elements branch and then, in the main panel, add three new properties with the following values:
Property Value AutoButtonColor false BackgroundColor3 #335FFF Rotation 0 
Hover over the parent TextButton row, click the ⋮ button, and navigate through to New ⟩ GuiState ⟩ Hover.

For the new Hover modifier, add two new properties as the targets for the hover state.
Property Value BackgroundColor3 #33AAFF Rotation -5 
Insert a new TextButton into the ScreenGui you previously created and linked. When you hover over the button in the viewport, it should gradually brighten and rotate 5 degrees counterclockwise.

Token-linked
To reuse transition behaviors across multiple rules, you can define tokens representing the TweenInfo data type. The following rule setup creates a hover state to transition all TextButtons to/from -5 degrees rotation and a lighter background color.
If you haven't already, create a token style sheet named TokenSheet.

Select TextButton in the UI Elements branch and then, in the main panel, add three new properties with the following values:
Property Value AutoButtonColor false BackgroundColor3 #335FFF Rotation 0 
For each new property except for AutoButtonColor, hover over its row, click the ⋮ button, and select Insert ⟩ Transition.

Hover over the new Transition row under each property, click the ⋮ button, and select Link Token. Then, instead of entering a static value, click the $ which appears in the value field and select the proper transition token.

Property Transition Transition Token BackgroundColor3 $CubicOut Size $QuadInOut 
Hover over the parent TextButton row, click the ⋮ button, and navigate through to New ⟩ GuiState ⟩ Hover.

For the new Hover modifier, add two new properties as the targets for the hover state.
Property Value BackgroundColor3 #33AAFF Rotation -5 
Insert a new TextButton into the ScreenGui you previously created and linked. When you hover over the button in the viewport, it should gradually brighten and rotate 5 degrees counterclockwise.

Style themes
Style themes consist of sets of specific tokens that can be swapped, for example color tokens that define a "light" and "dark" theme.
Theme creation
For extensibility, themes are organized into folders. While a single folder may suffice for most purposes, you're free to organize themes in folders like "colors" or "fonts" if desired.
Create a new theme folder:
- In the left column of the Style Editor, hover over Themes, click the ⊕, and select New Theme.
- Rename the new Folder item to General.

Create a new theme style sheet:
- Hover over the new General folder, click the ⋮ button, and select New Theme StyleSheet.
- Rename it to ThemeA.

Theme tokens
Once a theme is constructed, you can link its tokens to various UI object properties such as the BackgroundColor3 of a TextButton. Theme sheets must use a common set of tokens to work correctly.
With ThemeA selected in the left column of the Style Editor:
Link three previously created style tokens to three new theme tokens:
Theme Token Style Token BackColor $Gold ButtonFont $Oswald ButtonTextSize $Text32 - Click Add a Token… in the main panel and enter the theme token's name.
- Click the $ which appears in the value field and select the associated style token.

In the left column of the Style Editor, select TextButton in the UI Elements branch.

Link the theme's tokens to three new TextButton properties:
Property Theme Token BackgroundColor3 $BackColor FontFace $ButtonFont TextSize $ButtonTextSize - Click Add a Property… in the main panel and select the necessary property.
- Instead of entering a static value, click the ⋮ button and select Link Token.
- Click the $ which appears in the value field and select the proper theme token.


Theme duplication
Once you have a theme generally established, you can duplicate it and change various tokens to define a unique theme style.
In the left column of the Style Editor, hover over the ThemeA theme, click the ⋮ button, and select Duplicate.
Rename the duplicated theme to ThemeB.

Link two of the theme's tokens to two different style tokens:
Theme Token Style Token BackColor $Magenta ButtonTextSize $Text24 - To the right of the property's value field, click the ⋮ button and select Unlink Token.
- Click ⋮ again and select Link Token.
- In its value field, click the $ and select the new associated style token.

Theme swapping
Once you have multiple themes, you can swap between them via the theme's folder, or via a script as outlined in SetDerives().
In the left column of the Style Editor, select the General folder in the Themes branch.
In the main panel, swap between the themes using the radio buttons.




