Advertisement
anphu04

ROBLOX Broken Bone script

Dec 31st, 2018
10,289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. -- 31/12/2018 almost new year boiiiii --
  2. -- by Valualty --
  3. -- remember to press x to stop, u must stop at all cost --
  4.  
  5. plr = game:GetService('Players').LocalPlayer
  6. torso = plr.Character.UpperTorso
  7. hum = plr.Character.Humanoid
  8. mouse = plr:GetMouse()
  9. stopu = false
  10.  
  11. keying = mouse.KeyDown:Connect(function(key)
  12. if key == 'x' then
  13. stopu = true
  14. end
  15. end)
  16.  
  17. while stopu == false do -- stop when press x
  18. local bp = Instance.new('BodyPosition')
  19. bp.MaxForce = Vector3.new(999999,999999,999999)
  20. bp.Position = torso.Position
  21. bp.Parent = torso
  22. local bav = Instance.new('BodyAngularVelocity')
  23. bav.MaxTorque = Vector3.new(999999,999999,999999)
  24. bav.AngularVelocity = Vector3.new(200,200,200)
  25. bav.Parent = torso
  26. wait()
  27. end
  28. keying:Disconnect()
  29. print'Stopped spinning'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement