Deleted Account
Video
-- Anti Bypass debug.traceback
-- Anti Bypass debug.getinfo
-- Anti Bypass os.clock
-- Anti Bypass string.rep
--- Anti Logger Detected ( Simple ) :')
-- Anti Bypass debug.getinfo
-- Anti Bypass os.clock
-- Anti Bypass string.rep
--- Anti Logger Detected ( Simple ) :')
/lua function chars(str)
strc = {}
for i = 1, #str do
table.insert(strc, string.sub(str, i, i))
end
return strc
end
str = "Hello Dubai"
char = chars(str)
print("Char 2: "..char[2]) -- prints the char 'e'
print("-------------------\n")
for i = 1, #str do -- testing printing all the chars
if (char[i] == " ") then
print("Char "..i..": [[ Tis Nguyễn ]]")
else
print("Char "..i..": "..char[i])
end
end
strc = {}
for i = 1, #str do
table.insert(strc, string.sub(str, i, i))
end
return strc
end
str = "Hello Dubai"
char = chars(str)
print("Char 2: "..char[2]) -- prints the char 'e'
print("-------------------\n")
for i = 1, #str do -- testing printing all the chars
if (char[i] == " ") then
print("Char "..i..": [[ Tis Nguyễn ]]")
else
print("Char "..i..": "..char[i])
end
end
/lua Tis = function(char)
local result
for i=1,#char do
if i==1 then
result=string.format('%s','{')
end
result=result..string.format('\'%s\'',char:sub(i,i))
if i~=#char then
result=result..string.format('%s',',')
end
if i==#char then
result=result..string.format('%s','}')
end
end
return load('return '..result)()
end
dump=function(dump)
for key,value in pairs(dump) do
io.write(string.format("%s=%s=%s\n",key,type(value),value))
end
end
res = Tis('HaiNguyen')
dump(res)
local result
for i=1,#char do
if i==1 then
result=string.format('%s','{')
end
result=result..string.format('\'%s\'',char:sub(i,i))
if i~=#char then
result=result..string.format('%s',',')
end
if i==#char then
result=result..string.format('%s','}')
end
end
return load('return '..result)()
end
dump=function(dump)
for key,value in pairs(dump) do
io.write(string.format("%s=%s=%s\n",key,type(value),value))
end
end
res = Tis('HaiNguyen')
dump(res)
Forwarded from TRUMCHEAT 𝐎𝐟𝐟𝐢𝐜𝐢𝐚𝐥 🇻🇳🇨🇳🌎 (🇨 🇦 🇵 🇹 🇺 🇷 🇪 🇷)
YouTube
Tutorial how to make GG bypass Big log Part 2: os.exit() Change Basic Function Command
Continue on series how to make GG Bypass Big Log
This video is much useful for some command as: os.exit, processKill, ...
Hope you have fun :D
I have selling paid anti log that block all GG Mod and you guys can need to buy it to block 99% Logger in the world…
This video is much useful for some command as: os.exit, processKill, ...
Hope you have fun :D
I have selling paid anti log that block all GG Mod and you guys can need to buy it to block 99% Logger in the world…
local ss = 100
local reuses = 10
local str = "Hello Word"
----- Version 3 ( string.gsub callback )
x = os.clock()
for k = 1, ss do
tbl = {}
local tblc = 1 -- Note : This is faster than table.insert
string.gsub(str, ".", function(c)
tbl[tblc] = c
tblc = tblc + 1
end)
for j = 1, reuses do
for i = 1, #tbl do
c = tbl[i]
end
end
end
A = os.clock() - x
print(string.format("Elapsed Time : %.3f", A))
local reuses = 10
local str = "Hello Word"
----- Version 3 ( string.gsub callback )
x = os.clock()
for k = 1, ss do
tbl = {}
local tblc = 1 -- Note : This is faster than table.insert
string.gsub(str, ".", function(c)
tbl[tblc] = c
tblc = tblc + 1
end)
for j = 1, reuses do
for i = 1, #tbl do
c = tbl[i]
end
end
end
A = os.clock() - x
print(string.format("Elapsed Time : %.3f", A))