jayalmerol

Health script

Jan 28th, 2023 (edited)
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  2.  
  3. local PhantomForcesWindow = Library:NewWindow("Health++RoghoulXD")
  4.  
  5. local HealthCheats = PhantomForcesWindow:NewSection("Farm")
  6. local toggle = false
  7. local player = game.Players.LocalPlayer
  8.  
  9.  
  10. HealthCheats:CreateToggle("Auto Farm", function(value)
  11. toggle = not toggle
  12. if toggle then
  13. while true do
  14. wait(0.2)
  15. player.Character:MoveTo(Vector3.new(3031.623046875, 1.1405029296875, -2622.285888671875))
  16. player.Character.Humanoid.WalkSpeed = 1
  17. player.Character.Humanoid.Health = math.huge
  18. if toggle == false then
  19. player.Character.Humanoid.WalkSpeed = 30
  20. break
  21. end
  22. end
  23. else
  24. toggle = false
  25. end
  26.  
  27. end)
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment