Windows
Windows are the primary containers for your interface.Window Configuration
| Property | Type | Description |
|---|---|---|
Title | string | The window title text. |
SubTitle | string | Subtitle text appearing below the title. Supports rich text (gradients). |
Icon | string | Small icon in window title bar (Lucide icon name or rbxassetid://). |
Size | UDim2 | Initial size of the window. Default: UDim2.fromOffset(580, 460). |
TabWidth | number | Width of the side tab bar. Default: 160. |
Theme | string | Initial theme (e.g., “Dark”, “Light”, “Amethyst”). |
Acrylic | boolean | Enable blurred acrylic background effect. |
Search | boolean | Enable/Disable the element search bar. Default: true. |
DropdownsOutsideWindow | boolean | Allow dropdowns to render outside window bounds. |
TabsInHeader | boolean | Move tabs to the top header instead of sidebar. |
MinimizeKey | Enum.KeyCode | Key to minimize the window. Default: LeftControl. |
Advanced Options
| Property | Type | Description |
|---|---|---|
Image | string | Large image shown above the tab list in sidebar mode. |
BackgroundImage | string | Image asset URL for window background. |
BackgroundTransparency | number | Transparency of the window background (0-1). |
BackgroundImageTransparency | number | Transparency of the background image (0-1). |
UserInfo | boolean | Show user profile information in sidebar. |
UserInfoTitle | string | Title for user info (e.g., player name). |
UserInfoSubtitle | string | Subtitle for user info. |
UserInfoSubtitleColor | Color3 | Color of the user info subtitle text. |
UserInfoTop | boolean | Place user info at the top of sidebar instead of bottom. |
Tabs
Tabs are used to organize content within a window.Tab Options
| Property | Type | Description |
|---|---|---|
Title | string | Name of the tab. |
Icon | string | Icon name (Lucide) or asset ID. |
Selecting a Tab
You can programmatically select a tab by index.Sections
Sections divide a tab into grouped areas.Methods via Window
Window:Minimize(): Toggles minimize state.Window:Dialog(Config): Opens a modal dialog.