Hello, I have a section that can be repeated multiple times, which contain: 1. text field (aspect attribute) 2. dropdown menu (die rate attribute) 3. radio button. (selection attribute) My problem: The radio button is for the player to identify which aspect they want use, but the radio button don't consider the other repeated items. so instead of be able to choose only one aspect, the play can choose several. How can i create a solution where the player pick only aspect? Characters can have any number of aspects, so I cannot hardcode it. thanks in advance < label > Aspectos </ label > < fieldset class = "repeating_aspectos" > < input name = "attr_aspectos" type = "text" class = "desc" > < select name = "attr_aspecto_dado" class = "select_dice" > < option value = "0" selected > - </ option > < option value = "4" > D4 </ option > < option value = "6" > D6 </ option > < option value = "8" > D8 </ option > < option value = "10" > D10 </ option > < option value = "12" > D12 </ option > </ select > < input type = "radio" value = "1" name = "attr_aspecto_sel" > </ fieldset >