Toggles
local Toggle = Tabs.Main:AddToggle("MyToggle",
{
Title = "Toggle",
Description = "Toggle description",
Default = false,
Callback = function(state)
if state then
print("Toggle On")
else
print("Toggle Off")
end
end
})Functions
Last updated