Smartdumgood

reset

Jan 13th, 2025
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local ResetButton = Instance.new("TextButton")
  6.  
  7. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  8. ScreenGui.ResetOnSpawn = false
  9.  
  10. ResetButton.Name = "ResetButton"
  11. ResetButton.Parent = ScreenGui
  12. ResetButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  13. ResetButton.Position = UDim2.new(0.5, -50, 0, 10) -- Centered at top
  14. ResetButton.Size = UDim2.new(0, 100, 0, 30)
  15. ResetButton.Font = Enum.Font.SourceSansBold
  16. ResetButton.Text = "Enable Reset"
  17. ResetButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  18. ResetButton.TextSize = 20.000
  19.  
  20. -- Your loadstring for reloading
  21. ResetButton.MouseButton1Click:Connect(function()
  22. loadstring(game:HttpGet("https://pastebin.com/raw/pvNpdimg"))()
  23. end)
  24.  
Add Comment
Please, Sign In to add comment