IB1 Lua Obfuscator
Obfuscates Lua code using table operations with minimal locals and extensive dead code injection
Input Lua Code
Load Example
Clear
-- Simple example to demonstrate obfuscation function add(a, b) return a + b end function greet(name) print("Hello, " .. name) end local result = add(5, 3) greet("User") print("Result: " .. result)
Obfuscated Output
Obfuscate Code
Copy Output
0
Input Lines
0
Output Lines
0
Dead Code Blocks
0%
Obfuscation Level
Obfuscation Features
Uses only 5 local variables at most for core functionality
All operations performed via table indexing and manipulation
Extensive dead code injection based on input code size
String obfuscation through table concatenation
Function calls transformed to table-based dispatches
Arithmetic operations replaced with table lookups