Pou_help

Untitled

Feb 17th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Speed = "5"
  2.  
  3. repeat
  4. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  5. if (v:IsA("Tool")) then
  6. v.Massless = true
  7. v.Parent = game.Players.LocalPlayer
  8. end
  9. end
  10. wait(1/Speed)
  11. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  12. if v:IsA("Tool") then
  13. v.Parent = game.Players.LocalPlayer.Character
  14. end
  15. end
  16. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  17. if v:IsA("Tool") then
  18. v.Parent = game.Players.LocalPlayer
  19. end
  20. end
  21. until game.Players.LocalPlayer.Character.Humanoid.Health == 0
Advertisement
Add Comment
Please, Sign In to add comment