-- [[ 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 player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.fromOffset(220, 120) frame.Position = UDim2.fromScale(0.05, 0.3) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) frame.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundTransparency = 1 title.Text = "Developer UI" title.TextColor3 = Color3.new(1,1,1) title.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(0.9, 0, 0, 35) button.Position = UDim2.new(0.05, 0, 0.5, 0) button.Text = "Toggle Highlights" button.Parent = frame