-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local function applyesp(target, fillColor, outlineColor) if target:FindFirstChild("CustomESP") then return end local highlight = Instance.new("Highlight") highlight.Name = "CustomESP" highlight.Adornee = target highlight.FillColor = fillColor highlight.OutlineColor = outlineColor highlight.FillTransparency = 0.5 highlight.Parent = target end local function watchVer() local existing = workspace:FindFirstChild("VER") if existing then applyesp(existing, Color3.fromRGB(255, 0, 0), Color3.fromRGB(255, 255, 255)) end workspace.ChildAdded:Connect(function(child) if child.Name == "VER" then applyesp(child, Color3.fromRGB(255, 0, 0), Color3.fromRGB(255, 255, 255)) end end) end local function watchKeys() local monochrome = workspace:WaitForChild("monochrome", 10) if not monochrome then return end local function checkKey(child) if child.Name:match("^HiddenKey%d+$") then applyesp(child, Color3.fromRGB(255, 255, 0), Color3.fromRGB(0, 0, 0)) end end for _, child in ipairs(monochrome:GetChildren()) do checkKey(child) end monochrome.ChildAdded:Connect(checkKey) end task.spawn(watchVer) task.spawn(watchKeys)