getgenv().decompile = function(script_instance)
return request({
Url = "https://cherrywin.xyz/luau/decompile",
Method = "POST",
Headers = { ["Content-Type"] = "application/json" },
Body = game:GetService("HttpService"):JSONEncode({
bytecode = crypt.base64encode(getscriptbytecode(script_instance)),
encode_key = 203,
settings = {
LineComment = false,
FunctionComment = false,
UpvalueComment = false,
renamingType = "none" --or 'semantic'
},
}),
}).Body
end