Advertisement
teotv202

FE kill

Jan 2nd, 2019
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. game["Run Service"].RenderStepped:wait()
  2. power = 9999
  3. character = game:GetService("Players").LocalPlayer.Character
  4. Instance.new("ForceField",character).Visible = false
  5. wait(.1)
  6. local bambam = Instance.new("BodyThrust")
  7. bambam.Parent = character.HumanoidRootPart
  8. bambam.Force = Vector3.new(power,0,power)
  9. bambam.Location = character.HumanoidRootPart.Position
  10. local noclip = true
  11. char = game:GetService("Players").LocalPlayer.Character
  12. while true do
  13. if noclip == true then
  14. for _,v in pairs(char:children()) do
  15. pcall(function()
  16. if v.className == "Part" then
  17. v.CanCollide = false
  18. end
  19. end)
  20. end
  21. end
  22. game:service("RunService").Stepped:wait()
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement