Advertisement
Gostrondude

Untitled

Dec 9th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. Target = "NAMEHERE"
  2.  
  3. game:GetService('RunService').Stepped:connect(function()
  4. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  6. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  7. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  8. end)
  9. b = Instance.new("RocketPropulsion")
  10. b.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  11. b.Target = game.Players[Target].Character.HumanoidRootPart
  12. b.TurnP = 20000
  13. b.MaxThrust = 20000
  14. b.MaxSpeed = 1000
  15. b.ThrustP = 13000
  16. b:Fire()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement