If you hover over that inline roll, you can see the individual dice that were rolled. If you instead want to see them displayed in your template so that you don't have to hover, you can use a script. Install the MetaScriptToolbox, and then you can run this command: !&{template:default} {{name=Dice Roller}} {{Results=[[{?{How many?|}d?{Sides|6}s+?{Mod|0}}>?{Target|4}]]}}{{Target=?{Target}}}{{Mod=?{Mod}}}{{Dice=[\][\]{&eval}getDiceByVal($[[0]] >0 all list|+?{Mod}\]\][\][\]){&/eval}+?{Mod}\]\]}} {&simple} That utilizes Plugger and ZeroFrame (parts of the MetaScriptToolbox) to derive a template output much like you already had. The above version shows the individual dice as if they were all their own roll so that you can see the roll + the Mod: You can still see each die as a die roll but not include the mod as an adder to each die by removing the two instances of " +?{Mod}" from the last template part: !&{template:default} {{name=Dice Roller}} {{Results=[[{?{How many?|}d?{Sides|6}s+?{Mod|0}}>?{Target|4}]]}}{{Target=?{Target}}}{{Mod=?{Mod}}}{{Dice=[\][\]{&eval}getDiceByVal($[[0]] >0 all list|\]\][\][\]){&/eval}\]\]}} {&simple} Or, if you want to just see the numbers you rolled, without needing to see them as an inline roll, that would be even simpler: !&{template:default} {{name=Dice Roller}} {{Results=[[{?{How many?|}d?{Sides|6}s+?{Mod|0}}>?{Target|4}]]}}{{Target=?{Target}}}{{Mod=?{Mod}}}{{Dice={&eval}getDiceByVal($[[0]] >0 all list|,){&/eval}}} {&simple}