SS • Lua
214 subscribers
209 photos
24 videos
714 files
133 links
- > offline .
Download Telegram
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
-- instruction types, opnames and opcodes

local iA, iAB, iAC, iABC, iAx, iABx, iAsBx =
"iA", "iAB", "iAC", "iABC", "iAx", "iABx", "iAsBx"

local op = {
-- Loading of constants
[1]={LOADK=iABx}, [2]={LOADKX=iA}, [39]={EXTRAARG=iAx},
-- Unary functions
[0]={MOVE=iAB}, [19]={UNM=iAB}, [20]={NOT=iAB}, [21]={LEN=iAB},
-- Binary functions
[13]={ADD=iABC}, [14]={SUB=iABC}, [15]={MUL=iABC},
[16]={DIV=iABC}, [17]={MOD=iABC}, [18]={POW=iABC},
-- Table access
[7]={GETTABLE=iABC}, [10]={SETTABLE=iABC}, [11]={NEWTABLE=iABC},
[12]={SELF=iABC}, [36]={SETLIST=iABC},
-- Dealing with tuples
[4]={LOADNIL=iAB}, [22]={CONCAT=iABC}, [38]={VARARG=iAB},
[29]={CALL=iABC}, [30]={TAILCALL=iABC}, [34]={TFORCALL=iAC},
[31]={RETURN=iAB},
-- Interaction with upvalues
[5]={GETUPVAL=iAB}, [9]={SETUPVAL=iAB},
[6]={GETTABUP=iABC}, [8]={SETTABUP=iABC},
-- Logical functions
[3]={LOADBOOL=iABC}, [27]={TEST=iAC}, [28]={TESTSET=iABC},
[24]={EQ=iABC}, [25]={LT=iABC}, [26]={LE=iABC},
-- Branches, loops and closures
[23]={JMP=iAsBx}, [37]={CLOSURE=iABx},
[32]={FORLOOP=iAsBx}, [33]={FORPREP=iAsBx}, [35]={TFORLOOP=iAsBx},
}
function CheckLuaVersion(fmt)
if _VERSION ~= "Lua 5.3" then
if type(fmt) == "string" then
msg = string.format(fmt, "Lua 5.3")
else
msg = "needs Lua 5.3"
end
error(msg)
end
end
-- escape control bytes in strings
-----------------------------------------------------------------------
function EscapeString(s, quoted)
local v = ""
for i = 1, string.len(s) do
local c = string.byte(s, i)
-- other escapees with values > 31 are "(34), \(92)
if c < 32 or c == 34 or c == 92 or c > 126 then
if c >= 7 and c <= 13 then
c = string.sub("abtnvfr", c - 6, c - 6)
elseif c == 34 or c == 92 then
c = string.char(c)
end
v = v.."\\"..c
else -- 32 <= v <= 126
v = v..string.char(c)
end
end
if quoted then return string.format("\"%s\"", v) end
return v
end