Is there an alternative to debug.sethook()?
I'm trying to add a little extra safety to a sandbox I've created.
On top of doing all the ENV changes, I want to limit CPU and memory usage.
This is some quick and simple Lua code that (mostly) accomplishes that:
06 | local function checkMem() |
07 | if collectgarbage ( "count" )>memLimit then |
08 | error ( "uses too much memory" ) |
15 | if count>stepLimit then |
16 | error ( "uses too much CPU" ) |
20 | local code = loadstring ( "while wait(1) do print('hi') end" ) |
21 | debug.sethook(step, "" , 100 ) |
However, Roblox uses a modified version of Lua 5.1.4, which lacks debug.sethook()
as a function.
Running this code simply gives:
attempt to call field 'sethook' (a nil value)
(Commenting out the debug.sethook()
line makes the code run, everything else is fine)
So if I cannot use this, how else can I manage memory and CPU?