-- Nova UI Library local UILib = loadstring(game:HttpGet("https://pastefy.app/MgpgoqJ5/raw"))() local Window = UILib:CreateWindow({ Title = "MY HUB", -- Panel name Subtitle = "v1.0", -- Panel subtitle Icon = "rbxassetid://10723434711" -- Panel logo }) -- Normal Button Window:CreateButton({ Text = "Teleport Base", Callback = function() print("Teleported!") Window:Notify("Success", "Teleported to base!", 2) end }) -- Active Button Window:CreateActiveButton({ Text = "Enable ESP", Callback = function(active) print("ESP:", active) if active then Window:Notify("Enabled", "ESP is now active", 2) else Window:Notify("Disabled", "ESP is now inactive", 2) end end }) -- Toggle Window:CreateToggle({ Text = "Auto Farm", Default = false, Callback = function(value) print("Auto Farm:", value) if value then Window:Notify("Enabled", "Auto Farm started", 2) else Window:Notify("Disabled", "Auto Farm stopped", 2) end end }) Window:Notify("Success!", "Script loaded", 3)