What you're missing (and this is in no way obvious if you haven't been steeped in the Roll20 API for a long time) is that name is not a property on a Roll20 Object. Roll20's Objects are actually Proxy objects for an object stored in an (near) realtime database called Firebase. As such, they need to update that object when they themselves are updated. The method Roll20 chose for that was to use accessor functions (.get() and .set()) to encapsulate the properties of the Roll20 Object, so that they can do the right book keeping when you do things like set the name. The practical upshot of that is that the Roll20 Objects don't expose the properties directly, so things like targetTable.name will be undefined, but targetTable.get('name') will give you what you want. The only property that is exposed without using the accessor is the id property, so targetTable.id will give you the same thing as targetTable.get('id'). That said, there is an easier way: let targetTable = findObjs({type: "rollabletable", name: "loadingMessages"}); or if you want to find a collection of objects, say all the tables that start with "loading": let tables = findObjs({type: "rollabletable"}).filter( t => /^loading/i.test(t.get('name'))); If you have your heart set on using _, you could use _.find() instead: var tables = findObjs({type:"rollabletable"}); var targetTable = _.find(tables, t => t.get('name') === "loadingMessages" ); log(typeof(targetTable)); If you're just starting out on the API, here's a few forum threads that will be helpful: <a href="https://app.roll20.net/forum/post/6605115/namespaces-novice-seeks-help-exploring-the-revealing-module-pattern" rel="nofollow">https://app.roll20.net/forum/post/6605115/namespaces-novice-seeks-help-exploring-the-revealing-module-pattern</a> <a href="https://app.roll20.net/forum/post/6584105/creating-an-object-that-holds-specific-character-dot-id-and-character-name/?pagenum=1" rel="nofollow">https://app.roll20.net/forum/post/6584105/creating-an-object-that-holds-specific-character-dot-id-and-character-name/?pagenum=1</a> <a href="https://app.roll20.net/forum/post/6237754/slug%7D" rel="nofollow">https://app.roll20.net/forum/post/6237754/slug%7D</a>