Hello, I'm trying to get oriented with mod development with nexus sheets, and I'm running into some problems. The documentation briefly mentions that if you want to work with demiplane, you need to use getSheetItem/setSheetItem, and reference the advanced->attributes tab of the chracter for the attribute names. A discord member pointed me towards libSmartAttributes, which seems to handle getting data from the correct place, however I'm still facing issues. This is the small script I am testing with: let charId = char.id; let charName = char.get("name"); let level = await libSmartAttributes.getAttribute(charId, "level"); let output = "Character: " + charName + "\n"; output += "Level: " + level + "\n"; And this is the error I'm facing: TypeError: Cannot read properties of undefined (reading 'level') at getComputed (file:///home/node/d20-api-server/api.js:755:29) at getSheetItem (file:///home/node/d20-api-server/api.js:881:20) at Object.getAttribute (apiscript.js:2529:34) at handleChat (apiscript.js:2457:50) at file:///home/node/d20-api-server/src/pubsub2.js:42:46 at Map.forEach (<anonymous>) at PubSub.publish (file:///home/node/d20-api-server/src/pubsub2.js:42:35) at Timeout.processChatQueue [as _onTimeout] (file:///home/node/d20-api-server/api.js:1472:14) at listOnTimeout (node:internal/timers:569:17) at process.processTimers (node:internal/timers:512:7) Does anyone have any insight on this?