Hello there, I'm working on some custom sheet based on d6 and took default d6 script proposed by Aaron. I'm working on displaying the dice rolled but I'm facing a little issue where the dice are not taking the color of whomever is rolling. I guess my problem is formating the "speakingas" argument of sendChat which is described here : <a href="https://wiki.roll20.net/API:Chat" rel="nofollow">https://wiki.roll20.net/API:Chat</a> So to post here, I just changed a bit the example given in that article to display 3d dice and here is what I get : <a href="https://puu.sh/DE8MI/7718a75039.png" rel="nofollow">https://puu.sh/DE8MI/7718a75039.png</a> Here is the script I used : on("chat:message", function(msg) { //This allows players to enter !sr <number> to roll a number of d6 dice with a target of 4. if(msg.type == "api" && msg.content.indexOf("!sr ") !== -1) { var numdice = msg.content.replace("!sr ", ""); sendChat(msg.who, "/roll " + numdice + "d6>4", null, {use3d:true}); log(msg.who); } }); I tried getting the actual display name + adding the ID (msg.playerid) as the article is suggesting but none of my tests worked so far. I am probably looking into something that is not possible and maybe I'm losing my time investigating how to make it work so here I am... :) Best regards, Mesti