local SeizureUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/0bl1v/Seizure/refs/heads/main/main.lua"))() local Window = SeizureUI:CreateWindow({ Title = "My Super Hub", Author = "credits to seizure ui" -- optional }) local Tab1 = Window:CreateTab({ Name = "Home" }) local Tab2 = Window:CreateTab({ Name = "Settings" }) Tab1:CreateButton({ Name = "Click Me!", Callback = function() print("Button clicked!") end }) Tab1:CreateToggle({ Name = "ESP", Default = false, Callback = function(value) print("Toggle is now:", value) end }) Tab1:CreateButton({ Name = "Another Button", Callback = function() print("Another button clicked!") end }) Tab2:CreateButton({ Name = "Settings Button", Callback = function() print("Settings button clicked!") end })