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 on the label.

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 = "Hello!! Im A Paragraph, and i can store bunch of text. \nI also grow bigger or smaller depending on how much text is in my body! \nLike this, i am a much bigger paragraph than the other one! i also support multi lines with the\n character set.",

}, "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 header of the paragraph.

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

Content : string
The Content of the paragraph.