local Library = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local Window = Library.CreateLib("ROCK Hub | Base Battles", "DarkTheme")
local Credit = Window:NewTab("Credits")
local CreditSection = Credit:NewSection("Credits")
CreditSection:NewButton("Credit: lev", "Made By lev", function()
end)
-- Player Tab
local Player = Window:NewTab("Player")
local PlayerSection = Player:NewSection("Player")
local espEnabled = false
local espScript = nil
PlayerSection:NewToggle("ESP Toggle System", "Enable or disable ESP system with hotkeys", function(state)
if state then
-- Enable ESP
espEnabled = true
espScript = loadstring(game:HttpGet("https://[Log in to view URL]", true))()
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "ESP System";
Text = "ESP Enabled";
Duration = 2;
})
else
-- Disable ESP
espEnabled = false
-- Destroy the ESP visuals
local highlightStorage = game:GetService("CoreGui"):FindFirstChild("Highlight_Storage")
if highlightStorage then
highlightStorage:Destroy()
end
-- UNBIND the ESP hotkeys
local CAS = game:GetService("ContextActionService")
pcall(function()
CAS:UnbindAction("ToggleESP")
CAS:UnbindAction("ToggleNameTags")
CAS:UnbindAction("PeekNameTags")
end)
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "ESP System";
Text = "ESP Disabled";
Duration = 2;
})
end
end)
PlayerSection:NewToggle("Hitbox Expander", "Expands enemy hitboxes", function(state)
if not _G.ToggleHitbox then
-- load the hitbox script (if not already loaded)
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end
_G.ToggleHitbox(state)
end)
PlayerSection:NewButton("Full Bright", "Ability to never be in DARKNESS", function()
loadstring(game:HttpGet(('https://[Log in to view URL]'),true))()
end)
PlayerSection:NewButton("Player Teleport GUI", "Ability to teleport to other players", function()
loadstring(game:HttpGet(('https://[Log in to view URL]'),true))()
end)
-- OTHER
local Other = Window:NewTab("Other")
local OtherSection = Other:NewSection("Other")
OtherSection:NewButton("Infinite Yield", "Opens the GUI for Infinite Yield", function()
loadstring(game:HttpGet('https://[Log in to view URL]'))()
end)
-- Correct UI Toggle Keybind
OtherSection:NewKeybind("UI Toggle", "Show or hide the UI", Enum.KeyCode.RightShift, function()
Library:ToggleUI()
end)
To embed this program on your website, copy the following code and paste it into your website's HTML: