I get an unknown error in the output

To clarify, I have never encountered this error before.
The above error shows in my output every so often. I am not sure what it means and if I should worry about it? Nothing seems to break so I am not sure what to do about this.
Links or advice would be appreciated.

error

So that means somewhere in your code, a recursion happens. Think of a recursion like this:

local function factorial(n)
	    if n == 0 then
	        return 1
	    else
	        return factorial(n * factorial(n))
	    end
	end

But can I see your code?

I am not sure which piece of code is producing the error.

Well then just take my recursion advice and check to see if you have any of those.

1 Like