--Load Library local Library = loadstring(game:HttpGet("https://pastefy.app/XseCd0xE/raw"))() -- Setup Name and Subtitle local Window = Library:Window({ Title = "Project Name", SubTitle = "Developer Name" }) Library.SetOpenButtonImage = 106718938711987 --[[just type id, and must vaild or it automatically use defaut]] -- Make a tab/page local Page = Window:NewPage({ Title = "Category", Desc = "Description of features", Icon = 127194456372995, -- Tab Icon Banner = 125411502674016, -- Tab Background }) -- Make section Page:Section("Section Title") -- Make Button Page:Button({ Title = "Button Title", Desc = "Button Description", Text = "Execute", Callback = function() print("Clicked") end }) -- Make Toggle local MyToggle = Page:Toggle({ Title = "Toggle Title", Desc = "Description", Value = false, Callback = function(state) print(state) end }) --[[Set state programmatically: MyToggle.Value = true]] -- Make Dropdown Page:Dropdown({ Title = "Dropdown Title", List = {"Option 1", "Option 2", "Option 3"}, Value = "Option 1", Callback = function(selected) print(selected) end }) -- Make Slider Page:Slider({ Title = "Slider Title", Min = 0, Max = 100, Rounding = 0, Value = 50, Callback = function(val) print(val) end }) -- Make Input Page:Input({ Value = "Enter text here...", Callback = function(text) print(text) end }) -- Make Paragraph local Para = Page:Paragraph({ Title = "Title", Desc = "Description", Image = 127194456372995 })