So I already have a token Macro that works decently well, but I need help with 1 aspects of it. Here is the Macro as it stands below: /w pc &{template:default}{{name=@{selected|character_name} Spellcasting }}{{ Cantrips = [@{selected|repeating_spell-cantrip_$0_spellname}](~selected|repeating_spell-cantrip_$0_spell)[@{selected|repeating_spell-cantrip_$1_spellname}](~selected|repeating_spell-cantrip_$1_spell) }} Second I am trying to figure out how I can get it to bring up a drop down menu that they choose from instead of something in the chat. I have macros that achieve this for Ability Checks, Saving Throws, and Skill Checks, but I don't know how to do it with their Cantrip list. Below is how my Ability Check token Macro works: @{selected|wtype}&{template:simple} {{name=Ability Score for @{selected|character_name}}} ?{Ability Score | Strength, {{rname=Strength}} {{mod=[[@{selected|strength_mod}]]}} {{r1=[[@{selected|d20}+@{selected|strength_mod} @{selected|jack_bonus}]] }}{{r2=[[@{selected|d20}+@{selected|strength_mod} @{selected|jack_bonus}]] }} {{?{Type of Roll|Normal,normal=1|Advantage,advantage=1|Disadvantage,disadvantage=1} }} | Dexterity, {{rname=Dexterity}} {{mod=[[@{selected|dexterity_mod}]]}} {{r1=[[@{selected|d20}+@{selected|dexterity_mod} @{selected|jack_bonus}]] }}{{r2=[[@{selected|d20}+@{selected|dexterity_mod} @{selected|jack_bonus}]] }} {{?{Type of Roll|Normal,normal=1|Advantage,advantage=1|Disadvantage,disadvantage=1} }} | Constitution, {{rname=Constitution}} {{mod=[[@{selected|constitution_mod}]]}} {{r1=[[@{selected|d20}+@{selected|constitution_mod} @{selected|jack_bonus}]] }}{{r2=[[@{selected|d20}+@{selected|constitution_mod} @{selected|jack_bonus}]] }} {{?{Type of Roll|Normal,normal=1|Advantage,advantage=1|Disadvantage,disadvantage=1} }} | Intelligence, {{rname=Intelligence}} {{mod=[[@{selected|intelligence_mod}]]}} {{r1=[[@{selected|d20}+@{selected|intelligence_mod} @{selected|jack_bonus}]] }}{{r2=[[@{selected|d20}+@{selected|intelligence_mod} @{selected|jack_bonus}]] }} {{?{Type of Roll|Normal,normal=1|Advantage,advantage=1|Disadvantage,disadvantage=1} }} | Wisdom, {{rname=Wisdom}} {{mod=[[@{selected|wisdom_mod}]]}} {{r1=[[@{selected|d20}+@{selected|wisdom_mod} @{selected|jack_bonus}]] }}{{r2=[[@{selected|d20}+@{selected|wisdom_mod} @{selected|jack_bonus}]] }} {{?{Type of Roll|Normal,normal=1|Advantage,advantage=1|Disadvantage,disadvantage=1} }} | Charisma, {{rname=Charisma}} {{mod=[[@{selected|charisma_mod}]]}} {{r1=[[@{selected|d20}+@{selected|charisma_mod} @{selected|jack_bonus}]] }}{{r2=[[@{selected|d20}+@{selected|charisma_mod} @{selected|jack_bonus}]] }} {{?{Type of Roll|Normal,normal=1|Advantage,advantage=1|Disadvantage,disadvantage=1} }} } How would I be able to achieve this for the Cantrip list where it would first give them a drop down menu for their damage Cantrips, and then after that give them a toggle for Normal, Advantage, or Disadvantage?