Bytecode in.
Clean Luau out.

The only Luau decompiler that gives you readable code. Real variable names, proper indentation, zero garbage.

Buy a Key I have a key
< 1sDecompile
RealVar Names
RESTAPI
Same bytecode. Different output.
Other decompilers
LocalScript_local.lua
1local v_u_7 = {
2 ["visible"] = true,
3 ["fontSize"] = 13,
4 ["opacity"] = 0.85
5}
6UserInputService.InputBegan:Connect(function(p8, p9)
7 if not p9 then
8 if p8.KeyCode == Enum.KeyCode.RightShift then
9 v_u_7.visible = not v_u_7.visible
10 Parent.Visible = v_u_7.visible
11 end
12 end
13end)
Zynix Decompiler
LocalScript_local.luac
1-- Decompiled with Zynix Decompiler | .gg/zynix
2local fontSize = {
3 visible = true, fontSize = 13, opacity = 0.85
4}
5userInputService.InputBegan:Connect(function(keyCode, processed)
6 if not processed then
7 if keyCode.KeyCode == Enum.KeyCode.RightShift then
8 fontSize.visible = not fontSize.visible
9 text.Visible = fontSize.visible
10 end
11 end
12end)
13
Built different.
Readable variable names
Locals reconstructed with meaningful identifiers. No more v1 or l_0_0 garbage.
Function names restored
Named functions come back named. Structure preserved, not flattened into anonymous blobs.
Proper indentation
Control flow reconstructed correctly. Loops, ifs, and blocks all land exactly where they should.
String literals preserved
No hex encoding, no corruption. Your strings come out exactly as they went in.
Instant cached output
Bytecode hash matched against cache. Near zero latency on repeat requests.
HWID-locked keys
Your license binds to your machine on first use. No key sharing. No abuse.
Full REST API
Clean POST endpoint. Automate it, pipe it, integrate it into your own toolchain.
Key portal
Log in with your key. See usage analytics, HWID status, and expiry at a glance.
Pick your plan.
1
Join Discord
discord.gg/zynix
2
Open a ticket
choose your plan
3
Pay with crypto
BTC, ETH, LTC, etc.
4
Get your key
delivered instantly
Weekly
7 days
$2.99
Try it properly. Full access, all features, no commitment.
Purchase
Lifetime
Forever
$59.99
One payment. Never pay again. Best deal if you are in this for the long run.
Open a ticket
We accept Bitcoin, Ethereum, Litecoin, and other major cryptocurrencies. Open a ticket in Discord to arrange payment. Key is issued as soon as the transaction confirms.
Built for developers.
EndpointPOST /api/decompile
X-License-Keyzynix_<your key>
X-Api-Token64-char token from your dashboard
BodyRaw or base64 Luau bytecode
200 OKWatermarked clean Lua source
401Missing credentials
403Invalid / expired key or bad token
X-CacheHIT or MISS response header
example.sh
curl -X POST \ https://decompiler.zynixscripts.net/api/decompile \ -H "X-License-Key: zynix_your_key_here" \ -H "X-Api-Token: your_64char_api_token" \ --data-binary @bytecode.bin

Stop reading obfuscated garbage.

Open a ticket in our Discord and have a key in your hands in minutes.