How to Get a High Score in 2048
Score in 2048 is the sum of every tile you create by merging — a merge pays exactly the value of the tile it produces, and nothing else on the board earns a point. That single rule decides how you should play for score: points are won at the top of the chain, not spread across it, and each extra doubling you reach is worth more than everything you had scored before reaching it.
What does and does not earn points
Only merges pay. Sliding tiles across empty cells earns nothing, spawned tiles earn nothing, surviving longer earns nothing, and the tiles sitting on your board at the end are not counted again — they were already paid for when they were built. The full scoring rule is that short. Everything below follows from it.
Why one big merge beats a hundred small ones
Because a merge pays its own tile value, the cheapest possible way to own a tile of value V already costs a fixed amount of score, and that amount grows faster than the tile does. The minimum score behind each milestone tile, and what the next doubling adds:
| Highest tile built | Minimum score to own it | Added by this doubling |
|---|---|---|
| 1024 | 9,216 | — |
| 2048 | 20,480 | +11,264 |
| 4096 | 45,056 | +24,576 |
| 8192 | 98,304 | +53,248 |
| 16384 | 212,992 | +114,688 |
| 32768 | 458,752 | +245,760 |
Read the right-hand column against the middle one: from 4096 onward, each single doubling adds more score than your entire run had earned up to that point. Going 8192 → 16384 is worth 114,688 points, more than the 98,304 that got you there. No amount of tidy low-level merging competes with that. If you are optimising for score, every decision should be judged by whether it moves you one doubling closer, not by how many merges it produces this turn.
Chaining: how to actually collect a doubling
A doubling is not one merge, it is a cascade. To turn two 4096s into an 8192 you need the whole descending chain beneath them lined up on one path, so that a single swipe collapses 512+512, then 1024+1024, then 2048+2048, then 4096+4096. The habit that pays is building the chain before you cash it: hold the pair of high tiles apart until the tiles below them are ordered, then collapse the lot in one direction. Cashing a merge early — folding two 1024s the moment they appear, before the 512s beneath are paired — strands the result and costs you the cascade. Keeping your top tile pinned in one corner is the discipline that makes those chains possible; see the corner strategy for how to run it.
Endgame scoring: where most points are left behind
The most valuable merges available to you are always the ones you have not made yet, so a board that locks up with two 4096s still separated has thrown away 24,576 points that were sitting right there. When empty cells run short, stop opening new fronts and spend every remaining move on the largest merge you can still complete — the biggest pending pair first, then the next. A run that ends with your top pair collapsed is worth far more than one that ends with a tidier but unmerged board.
Score is not the same as reaching a tile
Reaching 2048 is a yes/no milestone; score is a running total, and the two come apart quickly. On 2048.now the main leaderboards rank wins by how fast you reached the 2048 tile, which rewards a completely different style — speed and efficiency to the milestone — while score rewards staying on the board and climbing. Decide which one you are playing for before the win screen appears, because the choice you make there settles it. For where your totals sit against other players, see what counts as a good score; for general board discipline rather than score tactics, start at the strategy FAQ.