Built to protect Roblox Lua scripts
This tool allows you to obfuscate your code, making it harder for others to read and reverse-engineer. By transforming your source code into a more complex and unreadable format, you can help protect your intellectual property while maintaining functionality. Perfect for developers looking to add an extra layer of security to their scripts.
Use this Lua snippet inside Roblox exploits to obfuscate scripts via HTTP.
local r = (syn and syn.request) or http_request or request
local h = game:GetService("HttpService")
local code = [[
print("hello")
]]
local res = r({
Url = "https://j-229c.onrender.com/api/obfuscate",
Method = "POST",
Headers = {["Content-Type"] = "application/json"},
Body = h:JSONEncode({script = code})
})
setclipboard(h:JSONDecode(res.Body).obfuscated)