AddLabel
Add label to group box
Syntax
Groupbox:AddDropdown({Index = "unique tool index", Text = "Text", Default = 1, Values = {"Option 1", "Option 2", "Option 3"}})Dropdown Functions
Dropdown:OnChanged(function(value) -- If dropdown value changed
print(value)
end)
Dropdown:SetValues(table) --// Replace dropdown items
Dropdown:Show()
Dropdown:Hide()
Dropdown:SetValue(val) --// Index of item OR item name
Dropdown:AddTooltip("Tooltip Text")Example

Last updated