Advertisement
Baldeagle22

fling 21

Oct 15th, 2018
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. --fe fling script, modified by CDrom202 for R6
  2.  
  3. power = 8000 -- change this to make it more or less powerful
  4.  
  5. game:GetService('RunService').Stepped:connect(function()
  6. game.Players.LocalPlayer.Character.Head.CanCollide = false
  7. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  8. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  9. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  10. end)
  11.  
  12. wait(.1)
  13. local bambam = Instance.new("BodyThrust")
  14. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  15. bambam.Force = Vector3.new(power,100,power)
  16. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  17.  
  18. wait(.1)
  19.  
  20. game.Workspace.baldeagle22.Humanoid.WalkSpeed = 600 -- Change the number to the speed you want
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement