Kraynic said: Yeah, what is displayed in the select doesn't have to be the value that it sets as the sheet attribute. One of my sheets uses this method to set attack type modifiers for weapon fire. <select class="aim-type parchment" name="attr_aiming" /> <option value="-6" title="Spray Primary Target, -6">Spray</option> <option value="0" title="Wild, no bonus" selected="selected">Wild</option> <option value="1" title="Burst, +1">Burst</option> <option value="3" title="Aimed, +3">Aimed</option> <option value="4" title="Aimed Revolver, +4">Aimed R</option> <option value="5" title="Aimed with Sniper, +5">Aimed S</option> </select> The attribute is aiming, and is called by @{aiming} in the roll button macro. The value is what gets plugged in for that attribute when the macro is run. What is shown in the dropdown is what is right before </option>. When you mouse over an item on the list, it will display the title value. If you want to go with a checkbox or radio button setup, you can do that. If you set up something with alignment itself, then you can use the value in any macro anywhere on the sheet without having to have multiple checkboxes/radio buttons that need to be set. Just use that attribute in the macros, and it is already set as soon as someone chooses their alignment. ok thankyou so much this is what I've been looking for, this makes more sense now, question though can the value be anything or can it only be integers? Andreas J. said: You should really take and read <a href="https://wiki.roll20.net/Building_Character_Sheets" rel="nofollow">https://wiki.roll20.net/Building_Character_Sheets</a> and get a grasp of the basics, and look at the character sheet example, it helps to know the core building blocks when doing things. There is a long section named Storing User Data that details many of the common methods, including an example of dropdown menu , similar to what Kraynic just showed. I have tried reading that wiki, unfortunately a lot of it doesn't make sense to me, it's an unfortunate side effect of having a kinesthetic learning style, I don't learn much by reading large blocks of text, my main learning style is doing things step by step through experimentation and asking direct questions to get what I need to know and fleshing it out from there. Unfortunately this means I end up asking things that to some would seem simple but to me require explanation.