Advertisement
plytalent

hack

Sep 22nd, 2020
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. curpos=game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position+Vector3.new(0,2048,0)
  2. while true do
  3. for _,v in pairs(game:GetService("Workspace").Items:GetChildren()) do
  4. if v:IsA("Tool")then
  5. if v:FindFirstChild("Handle") then
  6. print(v.Name,tostring((v:FindFirstChild("Handle").Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude))
  7. game:GetService("Players").LocalPlayer.Character:moveTo(v:FindFirstChild("Handle").Position + Vector3.new(0,20,0))
  8. for i =1 ,5 do
  9. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
  10. end
  11. wait(1)
  12. else
  13. print("NotFound Handle")
  14. end
  15. else
  16. print("CLASSNAME ~= TOOL")
  17. end
  18. end
  19. game:GetService("Players").LocalPlayer.Character:moveTo(curpos)
  20. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
  21. if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid").Health <1 then
  22. break
  23. end
  24. game:GetService("RunService").RenderStepped:Wait()
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement