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

Roblox Script for Front/Back Flips

This document contains a Lua script for a Roblox UI library called 'CODA' that allows users to perform front flips, back flips, and air jumps using specific keybinds. It defines functions for each action and binds them to the respective keys, providing feedback when the script is loaded successfully. Additionally, it includes a credits section acknowledging the creator, Zeezy#7203.

Uploaded by

d4rkz1nff10
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)
23 views2 pages

Roblox Script for Front/Back Flips

This document contains a Lua script for a Roblox UI library called 'CODA' that allows users to perform front flips, back flips, and air jumps using specific keybinds. It defines functions for each action and binds them to the respective keys, providing feedback when the script is loaded successfully. Additionally, it includes a credits section acknowledging the creator, Zeezy#7203.

Uploaded by

d4rkz1nff10
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

local Library = loadstring(game:HttpGet("[Link]

com/xHeptc/
Kavo-UI-Library/main/[Link]"))()
local Window = [Link]("CODA", "DarkTheme")

--Main
local Tab = Window:NewTab("Main")
local Section = Tab:NewSection("Main")

Section:NewButton("Fe Front/Back Flip", "Keybinds z,x,c", function()


wait(5)

--[[ Info ]]--

local ver = "2.00"


local scriptname = "feFlip"

--[[ Keybinds ]]--

local FrontflipKey = [Link].Z


local BackflipKey = [Link].N
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"})

end)

local Tab = Window:NewTab("Credit")

local Section = Tab:NewSection("Credit")

Section:NewDropdown("Credit", "Click", {"Showcase made by CODA Script Made by",


"Zeezy#7203", "Sub pls"}, function(currentOption)
print(currentOption)
end)

You might also like