Token mod is a script that can change token attributes with text commands in chat. You could make a macro in your Collections Tab that would send the text Aaron posted above. You install the Token-mod script on your game's Mod page: How to Install Roll20 API Scripts I am assuming from your initial post that you know how to set up a multisided token and assign it to a character. You would have a copy of that token on any page where you needed it. Here's what the parts of the command are doing: !token-mod Tells the Script Moderator that a token-mod command is starting --set currentSide|3 Tells Token-mod to set the side of the referenced token to side number 3. --ids @{MyDieOne|character_id} Tells token mod that the token you want to work with is all tokens represneting a particular character ID. In this case, the character ID of the character "MyDieOne". You can name the character whatever you would like of course. --ignore-selected Tells token-mod to act on all tokens in the game meeting that criteria, and that it doesn't need to worry if you have it selected or not. You could set this up with a query, so you don't have to have a separate macro for every side of your token. !token-mod --set currentSide|?{Which side?|1} --ids @{MyDieOne|character_id} --ignore-selected When you run the macro, Roll20 will prompt you, asking you to input a side number when the macro is run. It will then change every token in the game representing the character MyDieOne to the side you specified. Let me know if this is the sort of elaboration you were looking for. I can go into parts of it if you need more info.