0% found this document useful (0 votes)
824 views1 page

2survival Script Game Guardian

The document contains Lua script code for a game hacking menu in the mobile game "Survival Craft 2". The script displays a menu allowing the user to toggle speed and jump hacks on or off. It uses the GameGuardian script injection tool to modify floating point values in memory to enable or disable the hacks.

Uploaded by

kiky rizaldi
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)
824 views1 page

2survival Script Game Guardian

The document contains Lua script code for a game hacking menu in the mobile game "Survival Craft 2". The script displays a menu allowing the user to toggle speed and jump hacks on or off. It uses the GameGuardian script injection tool to modify floating point values in memory to enable or disable the hacks.

Uploaded by

kiky rizaldi
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
You are on page 1/ 1

if gg.

isVisible(true)
then
gg.setVisible(false)
end
gg.toast("Enable Functions At Main Menu")
function main()
Menu = gg.choice({"Speed/Jump ON","Speed/Jump OFF","Exit"}, nil,"Survival Craft 2
Script By Luckyday999")

if Menu == 1 then F1() end


if Menu == 2 then F2() end
if Menu == 3 then F3() end
if Menu == 4 then F4() end
if Menu == 5 then F5() end
if Menu == 6 then Exit() end
end

function F1()
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber("1.0;1.0;1.5::", gg.TYPE_FLOAT)
gg.refineNumber("1.0", gg.TYPE_FLOAT)
gg.getResults(99990)
gg.editAll("3.99", gg.TYPE_FLOAT)
gg.toast("⚔️Super Speed/Jump ON⚔️")
end

function F2()
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber("3.99;3.99;1.5::", gg.TYPE_FLOAT)
gg.refineNumber("3.99", gg.TYPE_FLOAT)
gg.getResults(99990)
gg.editAll("1.0", gg.TYPE_FLOAT)
gg.toast("⚔️Super Speed/Jump OFF⚔️")
end

function Exit()
gg.clearResults()
os.exit()
end

main()

while(true)
do
while gg.isVisible(true)
do
gg.setVisible(false)
main()
end
end

You might also like