Documentation

Everything you need to get started with G Aero UI.

Access Restricted

This is a private UI library. Access is restricted to authorized users only. If you have been granted access, please refer to the private documentation provided to you for the loader script and secret key.

Do not share your secret key or the loader script with anyone. Unauthorized access attempts will be logged and blocked.

Creating a Window

Initialize the main window of your UI.

local Window = Library:CreateWindow({
  Title = "My Script Hub",
  Center = true,
  AutoShow = true,
  TabPadding = 8,
  MenuFadeTime = 0.2
})

Adding Tabs

Organize your features into tabs.

local MainTab = Window:AddTab("Main")
local SettingsTab = Window:AddTab("Settings")