maybe this could work..?
as suggested by @MAARS
--local function h1()
local function funcValue(...)
local arg = ...
local a = gg.prompt({"💳 ENTER YOUR CURRENT COINS 💳:", "💎 ENTER YOUR CURRENT GEMS 💎:"},arg)
if not a then
return funcValue()
else
local notInput, value, group = nil, "", ""
for _, __ in next, a do
if __ == "" then
a[_] = "! IMPUT CODE !"
notInput = true
else
value = value..group..__
group = ";"
end
end
if notInput then
return funcValue(a)
end
return value
end
end
local customValue = funcValue()
if customValue then
s = customValue
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber(s, gg.TYPE_DWORD)
gg.getResults(100)
gg.editAll ("999999999", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.clearResults()
gg.toast('💰 ENJOY 999999999💰')
end