This should be easy and straightforward and I can't figure out if it is even possible within the Roll20 environment. I want to make a simple repeating section. In this repeating section I want to list the skill name, the dice you roll (d4-12), and then have a radio or select option available. When your full list of skills is complete I want you to be able to check a box and click a roll button and it rolls the selected dice. -Repeating Section Radio Selection -Radio Selection Attached to a Roll Button " <h3>Qualities</h3> <fieldset> <form> <input type="text" name="attr_skill" style="width: 70%; float: left;"> <select name="attr_skilldtype" style="width: 20%; float: left;"> <option value="-">-</option> <option value="d4">d4</option> <option value="d6">d6</option> <option value="d8">d8</option> <option value="d10">d10</option> <option value="d12">d12</option> </select> <input type="radio" value="@{attr_skilldtype}" name="attr_skilldtype" style="margin: 0 auto; float: left; margin-top: 10px; margin-left: 5px;"> </form> </fieldset> "