function main()
menu = gg.choice({'NEW: performance','NEW: Technique','NEW: Visual','EXIT'},nil,'Select Cheat')
if menu == 1 then performance() end
if menu == 2 then Technique() end
if menu == 3 then Visual() end
if menu == 4 then os.exit() end
if menu == nil then noselect() end
end
function performance()
input=gg.prompt({'Input your value below'},
{[1]='0'},
{[1]='number'})
if input==nil then
gg.alert('You have cancelled the dialogue')
os.exit()
end
gg.searchNumber(input[1],gg.TYPE_DWORD)
gg.getResults(100)
gg.editAll('9482',gg.TYPE_DWORD)
end
function Technique()
input=gg.prompt({'Input your value below'},
{[1]='0'},
{[1]='number'})
if input==nil then
gg.alert('You have cancelled the dialogue')
os.exit()
end
gg.searchNumber(input[1],gg.TYPE_DWORD)
gg.getResults(100)
gg.editAll('9482',gg.TYPE_DWORD)
end
function Visual()
input=gg.prompt({'Input your value below'},
{[1]='0'},
{[1]='number'})
if input==nil then
gg.alert('You have cancelled the dialogue')
os.exit()
end
gg.searchNumber(input[1],gg.TYPE_DWORD)
gg.getResults(100)
gg.editAll('9482',gg.TYPE_DWORD)
end
function noselect()
gg.toast('You Not Select Anything')
os.exit()
end
while true do
if gg.isVisible(true) then
main()
end
end