Buttons

To create a button, use this.

Tabs.Main:AddButton({
    Title = "Button",
    Description = "Very important button",
    Callback = function()
        print("Hello, world!")
    end
})

(Optional) You can delete description.

Last updated