0% found this document useful (0 votes)
4K views1 page

Mini Script - Lua

The document contains a Lua script that presents a menu with options to "Hack office", "Hack sector", "Hack playground", or "EXIT". Selecting an option will search for and replace specific numbers in game files with 0, and display a toast notification upon completion before exiting the script.
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)
4K views1 page

Mini Script - Lua

The document contains a Lua script that presents a menu with options to "Hack office", "Hack sector", "Hack playground", or "EXIT". Selecting an option will search for and replace specific numbers in game files with 0, and display a toast notification upon completion before exiting the script.
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
  • Script Code by Engine: This page contains a script written for a specific engine or function, detailing conditional checks and operations.

if gg.

isVisible(true) then
gg.setVisible(false)
end
gg.clearResults(true)
goto START
::START::

menu = gg.choice({'bum from russia:)','Hack office','Hack sector','Hack


playground',,'EXIT'},nil,'Mini script by Engine(Th3Le0)')

if menu == 1 then goto menu1 end


if menu == 2 then goto menu2 end
if menu == 3 then goto menu3 end
if menu == 4 then goto menu4 end

goto noselect

::menu1::
gg.searchNumber('0.4', gg.TYPE_FLOAT)
gg.getResults(6666666666)
print('Replaced: ', gg.editAll('999', gg.TYPE_FLOAT))
gg.toast('Done!')
goto sdone

::menu2::
gg.searchNumber('8', gg.TYPE_FLOAT)
gg.getResults(666666666666)
print('Replaced: ', gg.editAll('0', gg.TYPE_FLOAT))
gg.toast('Done!')
goto sdone

::menu3::
gg.searchNumber('28', gg.TYPE_FLOAT)
gg.getResults(6666666666)
print('Replaced: ', gg.editAll('0', gg.TYPE_FLOAT))
gg.toast('Done!')
goto sdone

::menu4::
gg.searchNumber('4', gg.TYPE_FLOAT)
gg.getResults(6666666666)
print('Replaced: ', gg.editAll('0', gg.TYPE_FLOAT))
gg.toast('Done!')
goto sdone

::sdone::
os.exit()

::noselect::
print('Script by Engine (old Th3Le0)')

You might also like