What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Nova UI Library - Free UI Library

Version / Update: v1.0.0
Download / Script Link
-- 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)
[ View More ]
051d786f-c934-4ff5-8560-46ad58b84156.webp


Nova UI Library - Free UI Library-- Nova UI Library
local UILib = loadstring(game:HttpGet("https://pastefy.app/MgpgoqJ5/raw"))()
 
Works on mobile
  1. Yes
Back
Top