So the bug is pretty weird so when trying to run obfuscated with strong preset script in roblox env it fails with error: attempt to call a nil value
Steps to reproduce:
- Obfuscate anything to run in roblox using strong preset (i used CLI)
- Place obtained script to a script in roblox studio and publish place then go to roblox serer
- Open console and you shall see an error
Screenshot: [Host]
Source script that is being obfuscated: (don't mind im obfuscating random things that shouldn't be obfuscated im just playing around)
local Scripts = game:GetService("ServerScriptService")["Server"]
for _, module in pairs(Scripts:GetChildren()) do
if module:IsA("ModuleScript") then
task.spawn(require(module))
end
end