Postby deice » Wed Jan 12, 2022 4:33 pm
if you need help with lua you're writing, you should probably also post the code itself to make it possible to debug.
if you want to know about the error itself, the gist is that lua has tables within which you can associate one value with another. it also has "nil", a special value different from the numerical 0 which signifies the lack of a value. this error happens when a nil value is attempted to be used as a table.
if it's being raised from a library (like in the screenshot) it's likely that something didn't load correctly or something is missing from your code.