Trusted since 2026
CIPHERX is a Lua obfuscator that allows you to secure your Lua scripts.
We are the longest standing and most secure option on the market.
CIPHERX is an obfuscation service allowing you to secure your Lua scripts. We are the longest standing and most secure option on the market with obfuscation layers comparable to an onion. If an attacker were to defeat one layer, many more layers of security will still be in their way to ensure your scripts stay secured. CIPHERX is consistently updated to ensure your scripts are protected with the state of the art techniques. With CIPHERX on your side, the concern of an attacker reverse engineering your script is no more.
-- VIP whitelist check (server)
local whitelist = {
["license:abc123"] = true,
["license:def456"] = true,
}
RegisterCommand("vip", function(src)
local id = GetPlayerIdentifier(src, 0)
if whitelist[id] then
TriggerClientEvent("vip:open", src)
else
DropPlayer(src, "Not authorized")
end
end, false)
-- Protected with CipherX Obfuscator v6.1
-- https://cipherx.store - unauthorized cracking is prohibited
local b1I,lI1,I1l=string.byte,string.char,table.concat
local IIl=function(s,k)
local o={}
for i=1,#s do o[i]=lI1((b1I(s,i)~k-i)%256)end
return I1l(o)
end
return(function(...)
local Oo0="\27\76\117\97\81\0\1\4\8\72\88\134\159\142\88\134\145..."
local fn=(load or loadstring)(IIl(Oo0,0x5F3A),"=cipherx")
if not fn then return error("cipherx: integrity check")end
return fn(...)
end)(...)
Simple, transparent pricing. No hidden fees.
Credits drip in over time — they're not given all at once. Each plan refills automatically on a fixed schedule, so you have a steady supply throughout the billing period.
Get support, share feedback, and stay updated on new features.
A real CipherX-protected build of the script on the left. Variables are renamed, strings are XOR-encoded, the runtime key is fetched at execution and integrity chains guard every byte.