Skip to content

Commit

Permalink
Update greif.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
tip52 authored Oct 21, 2022
1 parent 5d37e7c commit bb4d24d
Showing 1 changed file with 26 additions and 18 deletions.
44 changes: 26 additions & 18 deletions greif.lua
Original file line number Diff line number Diff line change
@@ -1,24 +1,32 @@
repeat
task.wait()
until
game.Players.LocalPlayer
repeat
task.wait()
until
game.Players.LocalPlayer


getgenv().Speed = 16
getgenv().Speed = 16

if not isfolder("Greif Config") then
makefolder("Greif Config")
if not isfile("Greif Config/WalkSpeed.txt") then
writefile("Greif Config/WalkSpeed.txt",16)
end
if not isfile("Greif Config/Fling.txt") then
writefile("Greif Config/Fling.txt","false")
end
if not isfile("Greif Config/FlingKey.txt") then
writefile("Greif Config/FlingKey.txt","X")
end
end

getgenv().Speed = tonumber(readfile("Greif Config/WalkSpeed.txt"))
fling = readfile("Greif Config/Fling.txt")
flingKey = readfile("Greif Config/FlingKey.txt")
_G.KeyCode = flingKey
if fling == "true" then
loadstring(game:HttpGet("https://shattered-gang.lol/scripts/fe/touch_fling.lua"))()
end

if not isfolder("Greif Config") then
makefolder("Greif Config")
writefile("Greif Config/WalkSpeed.txt",16)
writefile("Greif Config/Fling.txt","false")
writefile("Greif Config/FlingKey.txt","X")
else
getgenv().Speed = tonumber(readfile("Greif Config/WalkSpeed.txt"))
fling = readfile(("Greif Config/Fling.txt")
flingKey = readfile("Greif Config/FlingKey.txt")
_G.KeyCode = flingKey
if fling == "true" then
loadstring(game:HttpGet("https://shattered-gang.lol/scripts/fe/touch_fling.lua"))()
end


_G.flyKey = "q"
Expand Down

0 comments on commit bb4d24d

Please sign in to comment.