Score is earned at merge time
Moving tiles without a merge does not add points. A move can still be useful because it creates space or protects the main row, but the score only increases when two equal values become one larger tile.
Scoring
The score in 2048 is simple, but understanding it helps you make better decisions. Every tile is a power of two, every merge doubles a value, and the points from a move equal the new tiles created by that move.
| Merge | New tile | Score added |
|---|---|---|
| 2 + 2 | 4 | 4 points |
| 4 + 4 | 8 | 8 points |
| 16 + 16 | 32 | 32 points |
| 128 + 128 | 256 | 256 points |
| 1024 + 1024 | 2048 | 2048 points |
| 8192 + 8192 | 16384 | 16384 points |
Moving tiles without a merge does not add points. A move can still be useful because it creates space or protects the main row, but the score only increases when two equal values become one larger tile.
Four separate 2 + 2 merges produce 16 total points. One 128 + 128 merge produces 256 points. This is why late-game structure is so important: a clean board can turn earlier small work into much larger score gains.
After a valid move, the game adds a new 2 or 4 in an empty cell. Small tiles are useful fuel when they enter the board near your chain. They become dangerous when they appear between large tiles and block the path to a merge.
A high score is nice, but board health predicts whether the next few moves will be safe. Use the score together with the highest tile, empty cells and tile order.