local Library = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local Window = Library.CreateLib("ROCK Hub | Clark County", "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)
-- POI Teleports
local POI = Window:NewTab("POI Teleports")
local POISection = POI:NewSection("POI Teleports")
POISection:NewDropdown("Mersea", "POI's of Mersea", {"Mersea Bank", "Mersea River Auto"}, function(selected)
if selected == "Mersea Bank" then
loadstring(game:HttpGet(('https://[Log in to view URL]'), true))()
elseif selected == "Mersea River Auto" then
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end
end)
POISection:NewDropdown("Upper Greenwhich", "POI's of Upper Greenwhich", {"None", "Nonee"}, function(selected)
if selected == "None" then
loadstring(game:HttpGet(('https://[Log in to view URL]'), true))()
elseif selected == "Nonee" then
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end
end)
POISection:NewDropdown("Lower Greenwhich", "POI's of Lower Greenwhich", {"LGW | Bank", "LGW | Dealership"}, function(selected)
if selected == "LGW | Bank" then
loadstring(game:HttpGet(('https://[Log in to view URL]'), true))()
elseif selected == "LGW | Dealership" then
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end
end)
POISection:NewDropdown("Little Jinhan", "POI's of Little Jinhan", {"LJ | Gun dealer", "LJ | Taxi dealer"}, function(selected)
if selected == "LJ | Gun dealer" then
loadstring(game:HttpGet(('https://[Log in to view URL]'), true))()
elseif selected == "LJ | Taxi dealer" then
loadstring(game:HttpGet('https://[Log in to view URL]', true))()
end
end)
POISection:NewDropdown("Woodbury", "POI's of Woodbury", {"WB | Car lot"}, function(selected)
if selected == "WB | Car lot" then
loadstring(game:HttpGet(('https://[Log in to view URL]'), true))()
elseif selected == "None" then
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end
end)
POISection:NewDropdown("Lafeyette", "POI's of Lafeyette", {"Lafey | Dealership"}, function(selected)
if selected == "Lafey | Dealership" then
loadstring(game:HttpGet(('https://[Log in to view URL]'), true))()
elseif selected == "None" then
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end
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: