Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(5)
- --[[ Info ]]--
- local ver = "2.00"
- local scriptname = "feFlip"
- --[[ Keybinds you can change ]]--
- local FrontflipKey = Enum.KeyCode.Z -you can change this these key bind
- local BackflipKey = Enum.KeyCode.X -you can change this these key bind
- local AirjumpKey = Enum.KeyCode.C -you can change this these key bind
- --[[ Dependencies ]]--
- local ca = game:GetService("ContextActionService")
- local zeezy = game:GetService("Players").LocalPlayer
- local h = 0.0174533
- local antigrav
- --[[ Functions ]]--
- function zeezyFrontflip(act,inp,obj)
- if inp == Enum.UserInputState.Begin then
- zeezy.Character.Humanoid:ChangeState("Jumping")
- wait()
- zeezy.Character.Humanoid.Sit = true
- for i = 1,360 do
- delay(i/720,function()
- zeezy.Character.Humanoid.Sit = true
- zeezy.Character.HumanoidRootPart.CFrame = zeezy.Character.HumanoidRootPart.CFrame * CFrame.Angles(-h,0,0)
- end)
- end
- wait(0.55)
- zeezy.Character.Humanoid.Sit = false
- end
- end
- function zeezyBackflip(act,inp,obj)
- if inp == Enum.UserInputState.Begin then
- zeezy.Character.Humanoid:ChangeState("Jumping")
- wait()
- zeezy.Character.Humanoid.Sit = true
- for i = 1,360 do
- delay(i/720,function()
- zeezy.Character.Humanoid.Sit = true
- zeezy.Character.HumanoidRootPart.CFrame = zeezy.Character.HumanoidRootPart.CFrame * CFrame.Angles(h,0,0)
- end)
- end
- wait(0.55)
- zeezy.Character.Humanoid.Sit = false
- end
- end
- function zeezyAirjump(act,inp,obj)
- if inp == Enum.UserInputState.Begin then
- zeezy.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated")
- wait()
- zeezy.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end
- --[[ Binds ]]--
- ca:BindAction("zeezyFrontflip",zeezyFrontflip,false,FrontflipKey)
- ca:BindAction("zeezyBackflip",zeezyBackflip,false,BackflipKey)
- ca:BindAction("zeezyAirjump",zeezyAirjump,false,AirjumpKey)
- --[[ Load Message ]]--
- print(scriptname .. " " .. ver .. " loaded successfully")
- print("made by Zeezy#7203")
- local notifSound = Instance.new("Sound",workspace)
- notifSound.PlaybackSpeed = 1.5
- notifSound.Volume = 0.15
- notifSound.SoundId = "rbxassetid://170765130"
- notifSound.PlayOnRemove = true
- notifSound:Destroy()
- game.StarterGui:SetCore("SendNotification", {Title = "feFlip", Text = "feFlip loaded successfully! Press Okam Im ready to start", Icon = "rbxassetid://505845268", Duration = 5, Button1 = "Okay Im ready!"})
Add Comment
Please, Sign In to add comment