Advertisement
PercentBowl

Force Field God Roblox

Feb 22nd, 2020
754
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.50 KB | None | 0 0
  1. --[[ The ForceField will not show in lots of games
  2. or will sometimes disappear or reappear
  3. but will show in quite a few games as well.
  4. You will still not be able to die if there is
  5. no ForceField on your character.
  6. If it stops working, execute the script again.
  7. Note: Some tools will be buggy in certain
  8. games when the ForceField is running
  9. ]]
  10.  
  11. plr = game.Players.LocalPlayer
  12. mouse = plr:GetMouse()
  13. mouse.KeyDown:connect(function(key)
  14. if key == " " then
  15. game.Players.LocalPlayer.Character.Humanoid:ChangeState(3)
  16. end
  17. end)
  18. plr = game.Players.LocalPlayer
  19. mouse = plr:GetMouse()
  20. mouse.KeyUp:connect(function(key)
  21. if key == " " then
  22. jumping = false
  23. end
  24. end)
  25.  
  26. FF = true
  27.  
  28. while wait() do
  29. if FF then
  30. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  31. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  32. l.Parent = game.Players.LocalPlayer.Character
  33. l.Name = "Humanoid"
  34. wait()
  35. game.Players.LocalPlayer.Character["1"]:Destroy()
  36. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  37. game.Players.LocalPlayer.Character.Animate.Disabled = true
  38. wait()
  39. game.Players.LocalPlayer.Character.Animate.Disabled = false
  40. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  41. wait(4.85)
  42. workspace.CurrentCamera.CameraType = Enum.CameraType.Scriptable
  43. pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  44. wait(.4)
  45. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  46. workspace.CurrentCamera.CameraType = Enum.CameraType.Track
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement