Upscalefanatic3

Broken Bones IV Script wait 10 minutes you get 1 million

Feb 7th, 2019
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. plr = game:GetService('Players').LocalPlayer
  2. torso = plr.Character.UpperTorso
  3. hum = plr.Character.Humanoid
  4. mouse = plr:GetMouse()
  5. stopu = false
  6. keying = mouse.KeyDown:Connect(function(key)
  7. if key == 'x' then
  8. stopu = true
  9. end
  10. end)
  11. while stopu == false do -- stop when press x
  12. local bp = Instance.new('BodyPosition')
  13. bp.MaxForce = Vector3.new(999999,999999,999999)
  14. bp.Position = torso.Position
  15. bp.Parent = torso
  16. local bav = Instance.new('BodyAngularVelocity')
  17. bav.MaxTorque = Vector3.new(999999,999999,999999)
  18. bav.AngularVelocity = Vector3.new(200,200,200)
  19. bav.Parent = torso
  20. wait()
  21. end
  22. keyingBig:Disconnect()
  23. print'Stopped spinning'
Add Comment
Please, Sign In to add comment