SS • Lua
214 subscribers
209 photos
24 videos
714 files
133 links
- > offline .
Download Telegram
Encode Lua GG ( BETA )

-- Hide String
-- Hide Key - Fake Key
-- Fast Load 1000℅
-- Block Log and SSTool ( Simple )
-- Light file encoding
Sm__v4.lua
13.1 KB
Simple Enc __ Support All Script
New key ? 😂
Sm__v4.lua
13.8 KB
New (.-)
Blocker GG Mod Bypass logger
Blocker bypass debug.getinfo
Blocker Hooked Tool

_______ inv _________
T = {}
for i = 1,40000 do
table.insert(T,{
address = 1,
flags = 127,
values = 127
})
end
i = 0
repeat
i = i + 1
gg.removeListItems(T)
gg.addListItems(T)
gg.removeListItems(T)
until i == 10 or i >= 10


_ Anti log Simple _
TaskBar = "| _Bar% |⟬▒▒▒▒▒▒▒▒▒▒⟭|"
i = 0
ii = TaskBar:gsub("_Bar%%","Starting"):gsub("▒▒","░")
gg.toast(ii,true)
gg.sleep(1900)
repeat
i = i + 10
TaskBar = TaskBar:gsub("_Bar",tostring(i)):gsub("▒","█",1)
gg.toast(TaskBar)
gg.sleep(200)
TaskBar = TaskBar:gsub(tostring(i),"_Bar")
until i == 100


__loading 1 > 100 ℅
ChunkOffset = math.random(-250,745)
function EncodeChunk(x)
x = {x:byte(1,-1)}
for i in pairs(x) do
x[i] = x[i] + ChunkOffset
x[i] = "string"..x[i]
x[i] = x[i]:gsub("string","")
x[i] = x[i]:gsub("0"," ു")
x[i] = x[i]:gsub("1","┼┴談ނ")
x[i] = x[i]:gsub("2","ك")
x[i] = x[i]:gsub("3","д")
x[i] = x[i]:gsub("4","؏")
x[i] = x[i]:gsub("5","�")
x[i] = x[i]:gsub("6","쬇 ߈")
x[i] = x[i]:gsub("7","ᜀʀ")
x[i] = x[i]:gsub("8","؟")
x[i] = x[i]:gsub("9"," ៀ")
x[i] = '__😆__' .. x[i] .. '__😆__'
end
return "LoadChunk({" .. table.concat(x,",") .. "})"
end

function LoadChunk(x)
if debug.getinfo(load)["source"] == "=[Java]" then
else
return ""
end
for i in pairs(x) do
x[i] = "string"..x[i]
x[i] = x[i]:gsub("string","")
x[i] = x[i]:gsub(" ു","0")
x[i] = x[i]:gsub("┼┴談ނ","1")
x[i] = x[i]:gsub("ك","2")
x[i] = x[i]:gsub("д","3")
x[i] = x[i]:gsub("؏","4")
x[i] = x[i]:gsub("�","5")
x[i] = x[i]:gsub("쬇 ߈","6")
x[i] = x[i]:gsub("ᜀʀ","7")
x[i] = x[i]:gsub("؟","8")
x[i] = x[i]:gsub(" ៀ","9")
x[i] = x[i] - tostring(ChunkOffset)
end
return string.char(table.unpack(x))
end

T = ([[
gg.alert("Hello Word")
]])

A = EncodeChunk(T)
print(A)
Encoding By Satan v5.0 ( Share or no ? )
Share Encoding Lua GG ( Satan v5.0 ) ?
Anonymous Poll
85%
Yes :)
15%
No 😆
--- function to create a random string.

function string.Random(length)
local length = tonumber(length)
if length < 1 then return end
local result = {} -- The empty table we start with
for i = 1, length do
result[i] = string.char(math.random(32, 126))
end
return table.concat(result)
end
print(string.Random(30))
local char = {}

for i = 48, 57 do table.insert(char, string.char(i)) end
for i = 65, 90 do table.insert(char, string.char(i)) end
for i = 97, 122 do table.insert(char, string.char(i)) end
for i = 255, 255 do table.insert(char, string.char(i)) end
--for i = 94, 32 do table.insert(char, string.char(i)) end

function RanSTR(length)
math.randomseed(os.time())
if length > 0 then
return RanSTR(length - 1) .. char[math.random(1, #char)]
else
return ""
end
end
print("Results :\n "..RanSTR(99).."")
_C = 2 ^ 32 - 1
_0 = {}
_1 = 1000
_n = 0
for i = 1,_1 do
local _8 = math.random(_C)
if _0[_8] == nil then
_n = _n + 1
_0[_8] = _n
print(_n,i,_n == i,_8)
end
end


-- Test )
-- 1000 Random and 32 - bit Keys
Forwarded from NCH CHEATING TEAM ([phay phay NCH]The most handsome boy in the World)
#Sη Compiler Online.lua
114 KB
SN paid enc compiler
Leak my @thakhinnch
Join @teamnch

-----------Myanmar----------
Leak တော့လီးဖြစ်လားင့သားတို့
local esc = 0
-- Run-length-encode an array of ints.
function encode(ints)
local res, i, ct = {}, 1, 1-- result, index, count
while i <= #ints do
local v = ints[i]
while ints[i+1] == v do
ct = ct + 1
i = i + 1
end

-- if there's benefit in reducing a series
if ct > 3 or (ct >= 2 and v == esc) then
res[#res+1] = 0
res[#res+1] = ct
res[#res+1] = v
-- literal zeroes must be escaped
elseif v == esc then
for n=1,ct do
res[#res+1] = esc
res[#res+1] = esc
end
-- leave other content as-is
else
for n=1,ct do
res[#res+1] = v
end
end
ct = 1
i = i + 1
end
return res
end

-- Decode an array of ints from encode().
function decode(ints)
local res = {}
local i = 1
while i <= #ints do
local v = ints[i]

-- check for escaped 0s and series markers after escapes
if v == esc then
if ints[i+1] == esc then
res[#res+1] = esc -- escaped 0 literal
i = i + 2
else
local count, value = ints[i+1], ints[i+2]
for n=1,count do res[#res+1] = value end
i = i + 3
end
else
res[#res+1] = v
i = i + 1
end
end
return res
end
[Dec]xMKv3.0-VIP5-INVICTUS-SCRIPTS.lua
33.8 KB
Game : ??
Enc : Enbby
Forwarded from Егор
Free Enc.lua
15.6 KB
Free Encrypt By Sakura
function hex2bin(hexstr)
local str = ""
for i = 1, string.len(hexstr) - 1, 2 do
local bytestr = string.sub(hexstr, i, i+1)
local n = tonumber(bytestr, 16)
if 0 == n then
str = str .. '\00'
else
str = str .. string.format("%c", n)
end
end
return str
end
Forwarded from Dec & Enc Lua
Encrypt Tool By KRA_KEN Free V2.lua
24.4 KB
🖤ᴇɴᴄʀʏᴘᴛ ᴛᴏᴏʟ ʙʏ ᴋʀᴀ_ᴋᴇɴ ꜰʀᴇᴇ v2🖤
🖤ʀᴀɴᴅᴏᴍ ᴋᴇʏ, ꜰᴀᴋᴇ ᴋᴇʏ, ʜɪᴅᴇ ᴋᴇʏ🖤
🖤sʜᴀ + sᴛʀɪɴɢ🖤
🖤sᴛʀɪɴɢ 15 ꜰᴜɴᴄᴛɪᴏɴ ᴇɴᴄᴏᴅᴇ🖤
🖤sʜᴀ 1 ꜰᴜɴᴄᴛɪᴏɴ ᴇɴᴄᴏᴅᴇ🖤
🖤ʙʟᴏᴄᴋ ʟᴏɢ, ʟᴏᴀᴅ, ʜᴏᴏᴋᴇʀ🖤
🖤ᴊᴏɪɴ ᴍʏ ᴛᴇʟᴇɢʀᴀᴍ @ᴅᴇᴄ_ᴇɴᴄ_ʟᴜᴀ🖤

@kra_k3n
@feniksofficial
@kra_ken_pro
@tornado_lua
Forwarded from Dec & Enc Lua
Free Encrypt Tool By KRA_KEN.lua
13.9 KB
💔ᴇɴᴄʀʏᴘᴛ ᴛᴏᴏʟ ʙʏ ᴋʀᴀ_ᴋᴇɴ ꜰʀᴇᴇ💔
💔ʀᴀɴᴅᴏᴍ ᴋᴇʏ, ꜰᴀᴋᴇ ᴋᴇʏ, ʜɪᴅᴇ ᴋᴇʏ💔
💔10 ꜰᴜɴᴄᴛɪᴏɴ ᴇɴᴄᴏᴅᴇ sᴛʀɪɴɢ💔
💔ʙʟᴏᴄᴋ ʟᴏɢ, ʟᴏᴀᴅ, ʜᴏᴏᴋᴇʀ💔
💔ᴊᴏɪɴ ᴍʏ ᴛᴇʟᴇɢʀᴀᴍ @dec_enc_lua💔

🍁Guys let's please make 1,000 subscriptions before the summer is my goal @dec_enc_lua
Forwarded from Dec & Enc Lua
Encrypt Tool By KRA_KEN Hard.lua
23.4 KB
Encrypt Tool By KRA_KEN HARD
🔥Block Lasm, Dump, Log, SSDecomplie

Please send this away.
Hard Enc.lua
13.8 KB
🎉 ᴇɴᴄʀʏᴘᴛ ᴛᴏᴏʟ ʙʏ ᴋʀᴀ_ᴋᴇɴ & ʀᴏᴋɪɴ 🎉
ʙʟᴏᴄᴋs ʟᴀsᴍ, ᴅᴜᴍᴘ, ʟᴏɢ, ssᴅᴇᴄᴏᴍᴘʟɪᴇ
🔒 ᴇɴᴄᴏᴅᴇ ᴛʏᴘᴇ ʙᴀsᴇ 58 & sᴛʀɪɴɢ 256 🔒
🍒 ᴄʀᴇᴅɪᴛs:
@dec_enc_lua
🍒 ᴄʀᴇᴀᴛᴏʀs:
@tornado_lua_hacker
@rokinyt

Share your cannel please
Go 500 subs