Dropdowns
Changing Dropdown Values
Dropdown:SetValues({"one", "two", "three"})Dropdown
local Dropdown = Tabs.Main:AddDropdown("Dropdown", {
Title = "Dropdown",
Description = "Dropdown description",
Values = {"one", "two", "three"},
Multi = false,
Default = 1,
Callback = function(Value)
print("Dropdown was changed:", Value)
end
})Multiple Dropdowns
Information
Functions
Last updated