LogoObsidian

Groupboxes

Groupboxes are used to group ui elements together in a tab.

Groupboxes and Tabboxes are the basic building block of each tab, you need it to group together UI elements. Any groupbox you create can be either a left or right groupbox.

Player Info
[<font color="rgb(73, 230, 133)">Current Player</font>]: Roblox (ID: 1)[<font color="rgb(73, 230, 133)">Level</font>]: 100

Usage

You can create a Groupbox by calling the AddLeftGroupbox or AddRightGroupbox method on a Tab.

Arguments

local LeftGroupBox = Tab:AddLeftGroupbox("Left Groupbox", "wrench")
local RightGroupBox = Tab:AddRightGroupbox("Right Groupbox")
Arg IdxArgument DescriptionTypeDefault
1Title of the groupboxstringnil
2Custom Icon or Icon name from lucide.devstringnil
3Whether the groupbox should be initially visiblebooleantrue
4Whether the groupbox should be initially collapsedbooleanfalse
5Whether collapsing the groupbox should be disabledbooleanfalse

Methods

SetVisible

Sets the visibility of the groupbox.

Groupbox:SetVisible(Visible: boolean)
ArgumentTypeDescription
VisiblebooleanWhether the groupbox should be visible

Show

Shows the groupbox. This is an alias for SetVisible(true).

Groupbox:Show()

Hide

Hides the groupbox. This is an alias for SetVisible(false).

Groupbox:Hide()

AddTabbox

Creates a Tabbox inside this groupbox, allowing you to nest tabs.

local MyTabbox = Groupbox:AddTabbox()

On this page