Advertisement
Pro_Pastebin_Person1

Untitled

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