-- [[ 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 LocalPlayer = Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "DisposableUnlockGui" screenGui.ResetOnSpawn = false local guiParent = game:GetService("CoreGui") or LocalPlayer:WaitForChild("PlayerGui") screenGui.Parent = guiParent local unlockButton = Instance.new("TextButton") unlockButton.Size = UDim2.new(0, 200, 0, 50) unlockButton.Position = UDim2.new(0.5, -100, 0.5, -25) unlockButton.BackgroundColor3 = Color3.fromRGB(40, 40, 40) unlockButton.TextColor3 = Color3.fromRGB(255, 255, 255) unlockButton.Font = Enum.Font.GothamBold unlockButton.TextSize = 20 unlockButton.Text = "Unlock" unlockButton.Parent = screenGui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = unlockButton unlockButton.MouseButton1Click:Connect(function() local Event = game:GetService("ReplicatedStorage").CorePackages.Network.rev_BuyTrail Event:FireServer("Hacker") screenGui:Destroy() end)