I'm new to this whole java scripting thing and I've run into what seems like a simple and common problem. Why am I getting this error? I've been at it for hours and nothing works. I'm following a tutorial to make a basic script, but I keep getting this same "ERROR: You cannot set the imgsrc or avatar of an object unless you use an image that is in your Roll20 Library. See the API documentation for more info." The image IS IN MY LIBRARY!! and all characters have an avatar image. Just to be clear, I tried using an image that I created in photoshop and uploaded directly to My Images, but I still get this error. Here's the script... on ("chat:message",function(msg){ if(msg.type=="api"&& msg.content.indexOf("!spiritualWeapon")==0) { var selected = msg.selected; if (selected===undefined) { sendChat("API","Please select a character."); return; } var tok = getObj("graphic",selected[0]._id); createObj("graphic",{ left:tok.get("left")+70, top:tok.get("top"), height:70, width:70, pageid:tok.get("pageid"), layer:"objects", imgsrc: "<a href="https://files.d20.io/images/364601650/-x89vpob6Iu5OWQUHNQKeQ/thumb.png?16981002045" rel="nofollow">https://files.d20.io/images/364601650/-x89vpob6Iu5OWQUHNQKeQ/thumb.png?16981002045</a>" }); sendChat(tok.get("name"),"summoned Spiritual Weapon") } });