Advertisement
bruh_exploits

fe flip

Jun 11th, 2021
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. -- sub to bruh_exploit on yt
  2. -- z - frontflip x - backflip
  3.  
  4. wait(5)
  5.  
  6. --[[ Info ]]--
  7.  
  8. local ver = "2.00"
  9. local scriptname = "feFlip"
  10.  
  11.  
  12. --[[ Keybinds ]]--
  13.  
  14. local FrontflipKey = Enum.KeyCode.Z
  15. local BackflipKey = Enum.KeyCode.X
  16. local AirjumpKey = Enum.KeyCode.C
  17.  
  18.  
  19. --[[ Dependencies ]]--
  20.  
  21. local ca = game:GetService("ContextActionService")
  22. local zeezy = game:GetService("Players").LocalPlayer
  23. local h = 0.0174533
  24. local antigrav
  25.  
  26.  
  27. --[[ Functions ]]--
  28.  
  29. function zeezyFrontflip(act,inp,obj)
  30. if inp == Enum.UserInputState.Begin then
  31. zeezy.Character.Humanoid:ChangeState("Jumping")
  32. wait()
  33. zeezy.Character.Humanoid.Sit = true
  34. for i = 1,360 do
  35. delay(i/720,function()
  36. zeezy.Character.Humanoid.Sit = true
  37. zeezy.Character.HumanoidRootPart.CFrame = zeezy.Character.HumanoidRootPart.CFrame * CFrame.Angles(-h,0,0)
  38. end)
  39. end
  40. wait(0.55)
  41. zeezy.Character.Humanoid.Sit = false
  42. end
  43. end
  44.  
  45. function zeezyBackflip(act,inp,obj)
  46. if inp == Enum.UserInputState.Begin then
  47. zeezy.Character.Humanoid:ChangeState("Jumping")
  48. wait()
  49. zeezy.Character.Humanoid.Sit = true
  50. for i = 1,360 do
  51. delay(i/720,function()
  52. zeezy.Character.Humanoid.Sit = true
  53. zeezy.Character.HumanoidRootPart.CFrame = zeezy.Character.HumanoidRootPart.CFrame * CFrame.Angles(h,0,0)
  54. end)
  55. end
  56. wait(0.55)
  57. zeezy.Character.Humanoid.Sit = false
  58. end
  59. end
  60.  
  61. function zeezyAirjump(act,inp,obj)
  62. if inp == Enum.UserInputState.Begin then
  63. zeezy.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated")
  64. wait()
  65. zeezy.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  66. end
  67. end
  68.  
  69.  
  70. --[[ Binds ]]--
  71.  
  72. ca:BindAction("zeezyFrontflip",zeezyFrontflip,false,FrontflipKey)
  73. ca:BindAction("zeezyBackflip",zeezyBackflip,false,BackflipKey)
  74. ca:BindAction("zeezyAirjump",zeezyAirjump,false,AirjumpKey)
  75.  
  76. --[[ Load Message ]]--
  77.  
  78. print(scriptname .. " " .. ver .. " loaded successfully")
  79. print("made by Zeezy#7203")
  80.  
  81. local notifSound = Instance.new("Sound",workspace)
  82. notifSound.PlaybackSpeed = 1.5
  83. notifSound.Volume = 0.15
  84. notifSound.SoundId = "rbxassetid://170765130"
  85. notifSound.PlayOnRemove = true
  86. notifSound:Destroy()
  87. game.StarterGui:SetCore("SendNotification", {Title = "feFlip", Text = "feFlip loaded successfully!", Icon = "rbxassetid://505845268", Duration = 5, Button1 = "Okay"})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement