How does using one distribution as another's sample size affect variance?
For example, let's say I roll a 6-sided dice and record the number shown. Then, I roll 'that many' 6 sided dice more and record the sum of the extra dice rolled. What is the variance for this particular problem, and how does it scale to continuous distributions like the normal distribution?

Let $N$ take values in the natural numbers and $X_i$ be iid as the other variable; you want the variance of $Y=\sum_{i=1}^N X_i$. The conditional variance formula gives $$Var(Y)=Var(E(Y|N))+E(Var(Y|N))\\ =Var(NE(X_1))+E(NVar(X_1))\\ =(EX_1)^2Var(N)+Var(X_1)EN.$$
In case $N, X_i$ are taken from dice rolls, I get $EX_1=EN=\sum_{i=1}^6i/6=7/2,$ $VarX_1=VarN=\sum i^2/6-(7/2)^2=91/6-49/4$, $VarY=(91/6-49/4)(63/4)$.