Adding a Global Setting

Global Settings simplifies your experience by integrating Boolean-based settings management directly into the main interface, partially eliminating the need for additional tabs.

You can access the global settings menu by pressing the "Globe" Icon beside the title bar.

local Global_Setting = Window:GlobalSetting({
  Name <string>
  Default <boolean>
  Callback <function(): void>
})

Example

local Global_Setting = Window:GlobalSetting({
    Name = "Moderator Join Alerts",
    Default = false,
    Callback = function(State)
        print("Moderator Join Alerts " .. (State and "Enabled" or "Disabled"))
    end,
})

Last updated

Was this helpful?