I did figured it out. I will explain it here maybe someone can learn from it.
I didn't have to swap any thing, the only thing what i did have to do is adding this line gg.setVisible(true) in my code where's I want to get the eye icon feasible.
function hello()
gg.setVisible(false)
HH = gg.alert("Text text text ", "OK","Explanation")
if HH == 1 then HOME() end
if HH == 2 then Explanation() end
end
function Explanation()
gg.alert([[ bla bla bla
- Good Luck]])
end
gg.toast("Good Luck")
HOME = 1
function HOME()
HM = gg.choice({"H-MENU"," EXIT"}, nil, "MADE BY Tezter")
if HM == 1 then SMENU() end
if HM == 2 then EXIT() end
HOMEDM = -1 end
function SMENU()
SMEN = gg.choice({"Crates Hack Menu","↺ BACK"}, nil, " Armed Heist Hack MENU")
if SMEN == 1 then CratesH() end
if SMEN == 5 then HOME() end
end
function CratesH()
CRH = gg.choice({
" Challenge Points Hack", "↺ BACK"}, nil, " Crates Hack Menu")
if CRH == 1 then crh1() end
if CRH == 2 then SMENU() end
end
function crh1()
-- here's where i added the line so i can -- get eye icon feasible in this section -- of the code.
gg.setVisible(true)
gg.clearResults()
gg.processResume()
gg.toast("☡ Read The Explanation Otherwise It Will Not Work ☡ ")
v= gg.prompt({A='Add How Many Points You Have Instead Of The ? ',B= 'Add Here How Many Points You Want'},{A='1.12188e-43F;7.023e-44F;10.0F;4.254e-44F; ? D:125',B='Add Here How Many Points You Want'})
if v == nil then CratesH(
gg.alert ('Script Canceled, No input') ) else
gg.searchNumber (v.A, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.getResults(25)
gg.editAll(v.B, gg.TYPE_DWORD)
gg.processResume()
gg.toast("Challenge Points Hack Is Successfull Activated") end
end
function EXIT() os.exit() end
hello() while true do
if gg.isVisible(true) then
HOMEDM = 1
gg.setVisible(false) end
if HOMEDM == 1 then
HOME() end
end