Chrome Dino Myths Debunked (Fake Records)

The Chrome Dino game has been around since 2014 and accumulates folklore the way every long-running browser game does. “The max score is 99,999.” “There’s a global leaderboard.” “Type konami code for infinite jump.” Most of these are wrong, some are half-right, and a couple are completely made up. Here’s a clean look at the most common Chrome Dino myths and what the actual code does.
Key takeaways
- The score isn’t capped at 99,999. The on-screen display formats five digits, but the internal counter keeps going.
- There’s no official Google leaderboard. Your high score is stored locally and resets on browser clear.
- Cheat codes posted online (“konami code”, “type GODMODE”, etc.) don’t work — the only documented console trick is overriding the gameOver function.
- The game does loop at high speed once the difficulty curve maxes out — it doesn’t crash or end on its own.
- Night mode is a real feature triggered at specific score thresholds, not random.
Myth 1: The max score is 99,999
Almost everyone who’s played a long Dino run has hit a five-digit score and assumed it was the cap. It’s not. The on-screen score display has a fixed format that shows up to five digits, but the internal score counter is a 32-bit integer that can hold values into the billions.
What actually happens at 99,999: the score display rolls over and continues counting. In the original Chrome code, the display formatting truncates the leading digits if you go beyond five characters in some versions, but the underlying counter doesn’t reset. Players who’ve run multi-hour sessions have reported scores in the high six and seven figures.
For the deeper explanation of how the score counter works internally, see our Chrome Dino max score guide.
Myth 2: There’s a global leaderboard
False. The original Chrome Dino game has never had an online leaderboard. Your high score is stored in browser localStorage and is visible only to you. Clear your cookies or switch browsers, and the high score resets.
The myth probably comes from third-party Dino clones that added their own leaderboards (some clones do offer score uploads). Those are separate products, not the original Chrome Dino. Google has never shipped a leaderboard for the offline T-Rex Runner — the game is a deliberate non-tracking placeholder for the offline error page, and shipping a leaderboard would require server-side score validation that the original design avoided.
If you see a “Chrome Dino leaderboard” online, it’s a fan project, not an official Google ranking.
Myth 3: Cheat codes unlock features
The Chrome Dino game is a 600-line JavaScript file under BSD-3 license. It has been read by everyone. There are no Konami codes, no GODMODE strings, no hidden achievements.
What does exist is a documented JavaScript console trick. Open DevTools (F12), go to the Console tab, and run:
Runner.instance_.gameOver = function(){}
This overrides the game-over function to do nothing, which means the dino is invincible against cacti and pterodactyls. The score will keep climbing until you close the tab. This is not a “cheat code” — it’s modifying the running JavaScript object directly, which is a generic feature of any web page.
Other console tricks that work:
Runner.instance_.setSpeed(100)— increases game speed beyond normal max.Runner.instance_.tRex.jumpVelocity = -15— taller jumps. Default is around -10.
None of these require codes — they’re just JavaScript runtime modifications.
Myth 4: The game crashes or ends on its own
False. The game has no hard cap on duration. It scales speed up over time, plateaus at maximum speed, and continues forever as long as you keep jumping. Players have reported runs of 4+ hours; community archive posts list runs of 10+ hours. The game doesn’t end.
What does happen at very high scores: the rendering can stutter on lower-end hardware because cacti, pterodactyls, and clouds spawn at maximum density. Some browsers throttle background tabs, which can pause the game; this isn’t a “crash,” it’s the browser’s tab-throttling behavior.
The high-score runs that ended unexpectedly were almost always tab throttling, browser memory issues, or accidental tab closures — not the game itself ending.
Myth 5: Night mode is random
False, but understandable. Night mode is triggered at fixed score thresholds in the original Chrome Dino code. The first night mode kicks in around the 700-score mark; subsequent transitions happen at every ~700 score increment afterward.
The trigger is deterministic. If you play to score 700, night mode will activate. If you play to 1,400, day mode returns. Players sometimes report it as random because the speed of play makes score awareness blurry — you don’t notice you crossed 700 until the colors invert.
The transition is animated as a smooth fade rather than an instant flip, which adds to the impression of randomness. Watch the score counter and you’ll see the threshold crossing each time.
Other myths in circulation
- “The dino’s name is Lonely T-Rex.” Half-true. Sebastien Gabriel, the designer, has joked it could be called “Lonely T-Rex” in interviews. There’s no canonical name.
- “You can pet the dino.” False. There’s no interaction with the dino beyond jumping and ducking.
- “The desert background is based on a real location.” No — it’s stylized pixel art.
- “You can play with two dinos.” False in the original. Some forks and clones add 2-player modes; the canonical game is single-dino.
- “The score is encoded in the URL when you share.” False. The original has no sharing feature.
The myth that has a kernel of truth: the infinite-jump bug
There’s a documented frame-timing bug in early versions of the Chrome Dino game where rapid space-bar presses could trigger a second jump while the first was still active. The dino would float upward into the cloud layer and stay there until released.
This is real and reproducible in some archived versions of the game. Newer Chrome versions have likely patched it (the upstream code is in the open-source repo at github.com/wayou/t-rex-runner). Whether it works in any given build depends on the version and the input timing.
This is the one “trick” players talk about that has actual code-level reality. It’s not a code or a cheat — it’s an input-handling edge case.
Where the game actually came from
Chrome Dino was added to Chrome in September 2014. Designer Sebastien Gabriel built it as part of the offline error page redesign. The game runs at the chrome://dino URL or whenever a network error blocks normal page loading. The source code lives in the Chromium open-source repository and has been forked into countless community projects (the Wayou GitHub mirror is one of the most-used reference forks).
For broader context, the Dinosaur Game Wikipedia entry covers the game’s history and the well-documented design details.
Frequently asked questions
Is the Chrome Dino max score really 99,999?
No. The score display formats 5 digits, but the internal counter is a 32-bit integer that continues counting past 99,999. Long runs have reported scores in the six and seven figures.
Is there a Chrome Dino leaderboard?
No official one. Your high score is stored locally in your browser’s localStorage and resets when you clear cookies. Third-party Dino clones may have their own leaderboards, but Google’s original has never shipped one.
Are there real Chrome Dino cheat codes?
No traditional cheat codes. The only documented “cheat” is modifying the game’s JavaScript object in the browser console — specifically, overriding gameOver to make the dino invincible. This is JavaScript modification, not a cheat code the game recognizes.
Does Chrome Dino have an ending?
No. The game runs indefinitely. Speed scales to a maximum, then plateaus. Runs ending are usually from tab throttling, memory issues, or player exhaustion, not from the game itself ending.
When does night mode kick in?
At fixed score thresholds — first activation around 700 points, then toggling every ~700 points afterward. It’s deterministic, not random, even though it can feel random during fast play.
The bottom line
Chrome Dino myths are mostly folklore. The max score isn’t 99,999. There’s no leaderboard. Cheat codes don’t exist. Night mode is deterministic. The one real trick is the console gameOver override, and it’s not so much a hack as a JavaScript edit. The game stays simple and that’s part of its charm. If you want to test any of this for yourself, the game’s right here on the homepage — no codes required.








