Opcall - first resource

Can I get the source of this information? Never heard of assert being memory intensive.

Here.

1 Like

Guess I have a lot of work to do then.

1 Like

eh not really. just replace assert with if.

local function assert(value, errorMessage)
    return value or ​error​(errorMessage ​or​ ​"​assertion failed!​"​, ​2​)
end
2 Likes