Advertisement
anphu04

ROBLOX Broken Bone script 2

Dec 31st, 2018
950
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. -- 31/12/2018 almost new year boiiiii --
  2. -- by Valualty --
  3. -- in this one you will be dragged at a very high speed --
  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 -- when the character resets, the old humanoid will be gone and loop will stop
  18. local bp = Instance.new('BodyPosition')
  19. bp.MaxForce = Vector3.new(999999,999999,999999)
  20. bp.Position = Vector3.new(10000,0,0)
  21. bp.P = 1000
  22. bp.Parent = torso
  23. wait()
  24. end
  25. keying:Disconnect()
  26. print'Stopped dragging'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement