-- [[ 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 Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") -- GUI Creation local screenGui = Instance.new("ScreenGui") screenGui.Parent = Players.LocalPlayer.PlayerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(1, 0, 1, 0) frame.BackgroundTransparency = 0.5 frame.Parent = screenGui local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 0, 30) textLabel.BackgroundColor3 = Color3.new(1, 1, 1) textLabel.TextColor3 = Color3.new(0, 0, 0) textLabel.Text = "Admin Panel" textLabel.Parent = frame local spawnButton = Instance.new("TextButton") spawnButton.Size = UDim2.new(0.2, 0, 0.1, 0) spawnButton.Position = UDim2.new(0.4, 0, 0.1, 0) spawnButton.Text = "Spawn Rainbow Car" spawnButton.Parent = frame local killButton = Instance.new("TextButton") killButton.Size = UDim2.new(0.2, 0, 0.1, 0) killButton.Position = UDim2.new(0.4, 0, 0.2, 0) killButton.Text = "Kill All" killButton.Parent = frame local bringButton = Instance.new("TextButton") bringButton.Size = UDim2.new(0.2, 0, 0.1, 0) bringButton.Position = UDim2.new(0.4, 0, 0.3, 0) bringButton.Text = "Bring All" bringButton.Parent = frame local moneyButton = Instance.new("TextButton") moneyButton.Size = UDim2.new(0.2, 0, 0.1, 0) moneyButton.Position = UDim2.new(0.4, 0, 0.4, 0) moneyButton.Text = "Unlimited Money" moneyButton.Parent = frame -- Event Handlers spawnButton.MouseButton1Click:Connect(function() local rainbowCar = ReplicatedStorage:FindFirstChild("RainbowCar") if rainbowCar then local car = rainbowCar:Clone() car.Parent = game.Workspace car.HumanoidRootPart.CFrame = Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 10, 0) end end) killButton.MouseButton1Click:Connect(function() for _, player in pairs(Players:GetPlayers()) do if player ~= Players.LocalPlayer then player.Character.Humanoid:TakeDamage(1000) end end end) bringButton.MouseButton1Click:Connect(function() for _, player in pairs(Players:GetPlayers()) do if player ~= Players.LocalPlayer then player.Character.HumanoidRootPart.CFrame = Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, -10) end end end) moneyButton.MouseButton1Click:Connect(function() local player = Players.LocalPlayer local leaderstats = player:FindFirstChild("leaderstats") if leaderstats then local money = leaderstats:FindFirstChild("Money") if money then money.Value = 1000000 end end end)