I am trying to combine two scripts. I have one that changes the token. The character is a vampire, so I want her to be able to transform the token into vampire, bat, mist and wolf forms. Which works great: !token-mod {{--set imgsrc|?{Choose Form |Vampire, <a href="https://s3.amazonaws.com/files.d20.io/images/365969197/29eaUaIA2DoChTvHHoFpSg/med.png?1698966180" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/365969197/29eaUaIA2DoChTvHHoFpSg/med.png?1698966180</a> |Bat, <a href="https://s3.amazonaws.com/files.d20.io/images/386536191/WHo_ghOlWFa3LlFSHR6M4Q/med.png?1711690679" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/386536191/WHo_ghOlWFa3LlFSHR6M4Q/med.png?1711690679</a> |Mist, <a href="https://s3.amazonaws.com/files.d20.io/images/386536190/MNK7WOCnWdeL9-kOG4J0vA/med.png?1711690679" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/386536190/MNK7WOCnWdeL9-kOG4J0vA/med.png?1711690679</a> |Wolf, <a href="https://s3.amazonaws.com/files.d20.io/images/386537518/QG2_zeKryStQlbkGj2GBFg/med.png?1711692102" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/386537518/QG2_zeKryStQlbkGj2GBFg/med.png?1711692102</a> } }} Then I have a script that allows characters to change their token size when casting Enlarge /Reduce. Which also works great: !token-mod {{--set scale|?{Choose Size|Tiny,.5g|Small,1g|Medium,1g|Large,2g|Huge,3g|Gargantuan,4g } }} But what I'm trying to do is add the scaling part to the changing part so that when she selects Bat, it changes the token and the size to Tiny: !token-mod {{--set scale|.5g }} I hope that makes sense.