SS • Lua
214 subscribers
209 photos
24 videos
714 files
133 links
- > offline .
Download Telegram
#Simple Encrypted.lua
4.9 KB
Encrypted Tool Simple _ Hex × Base
local function randomString(length)
local random = ""
local characters = {"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
for i=1, length do
random = random..characters[math.random(1, #characters)]
end
return random
end
local String = randomString(10000)
local Decode = String .. [[=function(code)code=load(code)()return code;end;]]
DATA = DATA:gsub(".", function(code)
return "\\" .. code:byte()
end)
DATA = Decode .. String .. '("' .. DATA .. '")'
DATA = [================================[
-- Game Guardian Obfuscator
]================================] .. DATA
Share Simple Encrypted Revo7.0 ?
Anonymous Poll
88%
Yes
12%
No
ELGGRevo7.0 (Simple).lua
7.4 KB
💘 Encrypted Simple ( Revo 7.0 ) Hex _ Byte _ Base )/)
[Dec]Script_KG_V7.Fix.lua
110.7 KB
Game : Free Fire 1.59.x
Encrypted : Fake Revo 9.1
Go 😂
This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from CONVERT PAYPAL & CRYPTO (𝐁𝐲𝐝𝐳𝖭𝖾𝗌𝗂𝖺)
_load____.lua
26.6 KB
Forwarded from CONVERT PAYPAL & CRYPTO (𝐁𝐲𝐝𝐳𝖭𝖾𝗌𝗂𝖺)
Idk i just test , need to fix it :))
Forwarded from CONVERT PAYPAL & CRYPTO (𝐁𝐲𝐝𝐳𝖭𝖾𝗌𝗂𝖺)
[Bydz]_load____.lasm.clear.dec.lua
11.8 KB
No edit , last result dec. Fix by urself ( fix sendiri !! )
Copyright goes to @BydzNS :)
Forwarded from CONVERT PAYPAL & CRYPTO (𝐁𝐲𝐝𝐳𝖭𝖾𝗌𝗂𝖺)
😂👍
[Dec]SCRIP FULL 1.59X🛡️±.ELGGByRevo.17022021.Fix.lua
103.8 KB
Game : Free Fire
Enc : Revo 9.1 Fake
[6.4] Compiler.lua
43.8 KB
━━━━━━━━━━━━━━━━━━━
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
LEAK Bydzns 6.4 Enc
━━━━━━━━━━━━━━━━━━━
LEAK BY @newbie_dec
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
JOIN : @NEWBIE_DEC
━━━━━━━━━━━━━━━━━━━
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
Forwarded from Dec & Enc Lua
LOG = string.char(0):rep(99999)
LOGE = string.char(0x30):rep(99999)
LOGER = string.char(0x30,0x20,0xe5,0x8a):rep(99999)
for i = 1, 1000 do
debug.getinfo(1, nil, LOG..LOGE..LOGER)
debug.traceback(1, nil, LOG..LOGE..LOGER)
debug.getinfo(1, nil, LOG..LOGE..LOGER)
debug.debug(1, nil, LOG..LOGE..LOGER)
debug.getregistry(1, nil, LOG..LOGE..LOGER)
end

New blocker AntiLog by @tornado_lua_hacker (KRA_KEN)
Hello 😂
-- functions applicable to a bytecode header

local header = function(code) return code:sub(1,18) end
local lua52 = function(code) return code:sub(1,6) end
local bigendian = function(code) return code:byte(7,7)==0 end
local intlen = function(code) return code:byte(8,8) end
local instrlen = function(code) return code:byte(9,9) end
local sizelen = function(code) return code:byte(10,10) end
local numlen = function(code) return code:byte(11,11) end
local usesfloat = function(code) return code:byte(12,12)==0 end
local tail = function(code) return code:sub(13,18) end
local skip = function(code) return code:sub(19,-1) end
local istart = 19