Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
- ]]
- local ScreenGui = Instance.new("ScreenGui")
- local ResetButton = Instance.new("TextButton")
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ResetOnSpawn = false
- ResetButton.Name = "ResetButton"
- ResetButton.Parent = ScreenGui
- ResetButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- ResetButton.Position = UDim2.new(0.5, -50, 0, 10) -- Centered at top
- ResetButton.Size = UDim2.new(0, 100, 0, 30)
- ResetButton.Font = Enum.Font.SourceSansBold
- ResetButton.Text = "Enable Reset"
- ResetButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- ResetButton.TextSize = 20.000
- -- Your loadstring for reloading
- ResetButton.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/pvNpdimg"))()
- end)
Add Comment
Please, Sign In to add comment