GenerateRandomSearch

Two Dice Roller

Rolls two standard six-sided dice at once and shows each individual result alongside the total — the classic board-game or craps-style double roll.

What this generator does

Rolls exactly two six-sided dice, the combination most board games use, and keeps a running session beside them: every roll so far, the average against the 7 that two dice should average, and how often each face has come up. Each total carries its exact odds, so the familiar bell-shaped spread is visible rather than merely described.

How to use this tool

  1. Press roll for two dice.
  2. Roll again any time for a new result.

Understanding the controls

Number of dice
Fixed at two here, which is what most board games call for. The custom roller takes any number.
Modifier
A flat number added to the total after both dice land, for rules that add a bonus to the pair.
Seed
Empty for ordinary random rolls. Type anything to replay the same sequence — deterministic, not cryptographic.
Show the exact odds
Shows how likely each total was: a 7 turns up on six of the thirty-six pairs, a 2 on one of them, and the page says so beside the roll.

Common use cases

  • Board games needing a two-dice roll
  • Craps-style games
  • Quick probability demonstrations

Randomness and fairness

Each die is drawn independently from your browser's cryptographic random source, so all six faces are equally likely on each and neither die influences the other. The uneven spread of totals comes from there being more pairs that add to 7 than to 2. A seed swaps that source for a deterministic one, which replays the same rolls for the same seed — deterministic, not cryptographic.

For how randomness is produced across the whole site, see how Generate Random works.

Limitations and good to know

  • Totals between 2 and 12 are not equally likely: 7 comes up six times as often as 2, because six different pairs add to 7 and only one adds to 2. That is the arithmetic of two dice, not a bias in the roller.