When you say 'combination', do you mean that you want to see the sum of each 2d6, or that you want to see each individual die roll paired together? E.g. if you roll 3d6 and get a 1, 2, and 6 do you want to see: 3, 7, and 8 or 1 & 2, 1 & 6, 2 &6 or 1 & 2 = 3, 1 & 6 = 7, 2 & 6 = 8 I'm pretty sure that in any of those cases a Mod script is going to be required. The first one might be possible with some obscure dice mechanics that RainbowEncoder can come up with, but that will also not likely be possible to be sorted. If you just want to see the three dice rolls paired together (but not summed or in order) then that can be done pretty easily. The hard part is you can't really do anything with an individual result and also use that individual result in other results using the standard Roll20 dice roller syntax. [[ [[1d6]] [[1d6]] [[1d6]] ]] = $[[0]] & $[[1]]; $[[0]] & $[[2]]; $[[1]] & $[[2]]