Button
Creating Button and Editing it
Creating Button
local Button = Tab:Button({
Title = "Button",
Desc = "Test Button",
Locked = false,
Callback = function()
print("clicked")
end
})
Set Title
Button:SetTitle("Title Example")
Set Description
Button:SetDesc("Description Example")
Lock Element
Button:Lock()
Unlock Element
Button:Unlock()
Destroy Element
Button:Destroy()