Добавить источник:

local GuiXi = loadstring(game:HttpGet("https://raw.githubusercontent.com/hatai27/GuiXi-Gui-Library/refs/heads/main/GuiXi"))()

Создать окно:

local Window = GuiXi:CreateWindow({ Title = "Title", TitleImage = "rbxassetid://imageid", ToggleImage = "rbxassetid://imageid" })

Добавить главную страницу:

local MainPage = Window:GetMainPage()

Добавить страницу:

local Page1 = Window:CreatePage("Page1")

Добавить кнопку:

Page1:AddButton("Button", function() print("Button clicked!") end)

Создать другую страницу:

local OtherPage = Window:CreatePage("Page2") -- Не может иметь одинаковое имя OtherPage:AddButton("Button", function() print("Button clicked!") end)
✅ Скопировано в буфер обмена!