0% found this document useful (0 votes)
59 views2 pages

Roblox feFlip Script Keybinds

This script, named 'feFlip' version 2.00, allows players to perform frontflips, backflips, and air jumps in a game. It includes keybinds for each action and utilizes the ContextActionService for input handling. The script also provides a notification upon successful loading and includes a sound effect for feedback.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
59 views2 pages

Roblox feFlip Script Keybinds

This script, named 'feFlip' version 2.00, allows players to perform frontflips, backflips, and air jumps in a game. It includes keybinds for each action and utilizes the ContextActionService for input handling. The script also provides a notification upon successful loading and includes a sound effect for feedback.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

--[[

WARNING: Heads up! This script has not been verified by ScriptBlox. Use at
your own risk!
]]
wait(5)

--[[ Info ]]--

local ver = "2.00"


local scriptname = "feFlip"

--[[ Keybinds ]]--

local FrontflipKey = [Link].Z


local BackflipKey = [Link].X
local AirjumpKey = [Link].C

--[[ 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 == [Link] then
[Link]:ChangeState("Jumping")
wait()
[Link] = true
for i = 1,360 do
delay(i/720,function()
[Link] = true
[Link] =
[Link] * [Link](-h,0,0)
end)
end
wait(0.55)
[Link] = false
end
end

function zeezyBackflip(act,inp,obj)
if inp == [Link] then
[Link]:ChangeState("Jumping")
wait()
[Link] = true
for i = 1,360 do
delay(i/720,function()
[Link] = true
[Link] =
[Link] * [Link](h,0,0)
end)
end
wait(0.55)
[Link] = false
end
end

function zeezyAirjump(act,inp,obj)
if inp == [Link] then
[Link]:FindFirstChildOfClass'Humanoid':ChangeState("Seated")
wait()
[Link]: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 = [Link]("Sound",workspace)


[Link] = 1.5
[Link] = 0.15
[Link] = "rbxassetid://170765130"
[Link] = true
notifSound:Destroy()
[Link]:SetCore("SendNotification", {Title = "feFlip", Text = "feFlip
loaded successfully!", Icon = "rbxassetid://505845268", Duration = 5, Button1 =
"Okay"})

You might also like