FreeRobloxScripts1

Reset Character Tool (Only Works Game With Backpack)

May 29th, 2023 (edited)
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. --Made By Haxker_6666666
  2. mouse = game.Players.LocalPlayer:GetMouse()
  3. tool = Instance.new("Tool")
  4. tool.RequiresHandle = false
  5. tool.Name = ("Reset Character")
  6. tool.Activated:Connect(function()
  7. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = 100
  8. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  9. while true do
  10. game:GetService("RunService").Stepped:wait()
  11. game.Players.LocalPlayer.Character.Head.CanCollide = false
  12. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  13. end
  14. end)
  15. tool.Parent = game.Players.LocalPlayer.Backpack
Advertisement
Add Comment
Please, Sign In to add comment