SamePerson Posted June 10, 2023 Posted June 10, 2023 if gg.isVisible() then while true do gg.alert("Don't open GG while executing") gg.setVisible(true) gg.clearResults() gg.clearList() os.exit() I want to make someone cannot peek my code when searching value How to make it work, i appreciate for the help Test.lua
XEKEX Posted June 10, 2023 Posted June 10, 2023 4 hours ago, SamePerson said: if gg.isVisible() then while true do gg.alert("Don't open GG while executing") gg.setVisible(true) gg.clearResults() gg.clearList() os.exit() I want to make someone cannot peek my code when searching value How to make it work, i appreciate for the help Test.lua 571 B · 1 download gg.setVisible(false) -- set the visibilty to false if gg.isVisible() then -- if the user tap the gg btn execute the code below gg.clearResults() -- clear result gg.clearList() --clear list so user can't peak the code gg.alert("Don't open GG while executing") -- alert os.exit() -- then exit end
SamePerson Posted June 10, 2023 Author Posted June 10, 2023 2 hours ago, XEKEX said: gg.setVisible(false) -- set the visibilty to false if gg.isVisible() then -- if the user tap the gg btn execute the code below gg.clearResults() -- clear result gg.clearList() --clear list so user can't peak the code gg.alert("Don't open GG while executing") -- alert os.exit() -- then exit end function Test() -- function name gg.setVisible(false) -- set visibility to false gg.setRanges(gg.REGION_ANONYMOUS) -- ranges name gg.searchNumber("your value", gg.TYPE_DWORD) -- input your value if gg.isVisible() then -- if the user tap the gg btn execute the code below while true do -- set true to trigger gg.clearResults() -- clear result gg.clearList() -- clear list so user can't peak the code gg.alert("Don't open GG while executing") -- alert os.exit() -- then exit end end end Already fix, thanks sir
Question
SamePerson
I want to make someone cannot peek my code when searching value
How to make it work, i appreciate for the help
Test.lua
2 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.