Skip to main content

Textual Elements

Creating Labels

Creation Snippet

local Label = Groupbox:CreateLabel({
Name = "Label"
}, "INDEX")

This is just a snippet, not all parameters are included
Replace INDEX with a unique identifier of the instance that is not repeated.

Parameters

Name : string
The Text that shows in the button.

Tooltip : string NOT REQUIRED
A Description that shows up after hovering over the element after a short amount of time.

Icon : number NOT REQUIRED
The Icon that shows up next to the title.

Creating Paragraphs

Create large bodies of text that automatically resize with Paragraphs.

Creation Snippet

local Paragraph = Groupbox:CreateParagraph({
Name = "Paragraph",
Content = [[Content of your paragraph goes here. Lorem Ipsum Dolor Sit Amet. Lorem Ipsum Dolor Sit Amet. Lorem Ipsum Dolor Sit Amet. Lorem Ipsum Dolor Sit Amet. Lorem. Ipsum Dolor Sit Amet. Lorem Ipsum Dolor Sit Amet. Lorem Ipsum Dolor Sit Amet.

Also Supports Multi Lining
]]

}, "INDEX")

This is just a snippet, not all parameters are included
Replace INDEX with a unique identifier of the instance that is not repeated.

Parameters

Name : string
The Text that shows in the button.

Icon : number NOT REQUIRED
The Icon that shows up next to the title.

Content : string
The Content of the paragraph.