Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. Speed = 200 -- Your speed
  2.  
  3.  
  4. -- 255 is the max
  5. local function backpack()
  6. game.Players.LocalPlayer.Character.Arm.Parent = game.Players.LocalPlayer.Backpack
  7. end
  8. local function character()
  9. game.Players.LocalPlayer.Backpack.Arm.Parent = game.Players.LocalPlayer.Character
  10. end
  11. if Speed >= 255 then
  12. Speed = 255
  13. end
  14. game.Players.LocalPlayer.Character.Animate.toolnone.ToolNoneAnim.AnimationId = 0
  15. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  16. if v:IsA("Accessory") then
  17. local ArmRemove = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  18. ArmRemove.Name = "Arm"
  19. v.Handle.Parent = ArmRemove
  20. ArmRemove.Handle.Massless = true
  21. repeat
  22. ArmRemove.Grip = CFrame.new(Vector3.new(1.5,-2.062,0.11875)) * CFrame.Angles(math.rad(-90),0,0)
  23. character()
  24. for i=1,360-Speed do
  25. backpack()
  26. ArmRemove.Grip = ArmRemove.Grip * CFrame.Angles(math.rad(-1-Speed+1),0,0)
  27. character()
  28. wait()
  29. end
  30. backpack()
  31. until game.Players.LocalPlayer.Character.Humanoid.Health == 0
  32. end
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement