Everyone on one screen. Nobody in the way.
· Updated · 3 min read

In a friends room, Egg on the Run puts every player on the same screen. Two to eight eggs fly the same course, start at the same moment, and you can see each of your friends beside you with their name above them. But nobody collides. You cannot block a friend, and a friend cannot knock you into a gate. Everyone is flying the same run together, and the highest score when the round ends wins.
The part that makes it work is the seed. Every room generates one, and every player's course is built from it. Same gaps, same coins, same order. When the standings appear, the only thing that separated first place from fourth was how each player flew a course everyone got equally.
Why you can see everyone but touch no one
In a game where you hold to rise and release to fall through a narrow gap, a second egg that can physically get in the way is not competition. It is an obstacle, and whoever got there first decides what happens to everyone behind them. So the other eggs are drawn on your screen, translucent, but they are not part of your run. Eight players can join without the eighth having a worse round than the first, and you still get the thing that makes it a race: watching a friend clear the gap you just missed.
What you are actually seeing
Each player's run is simulated on the server from the inputs they send. A few times a second the server sends everyone a small snapshot of where every other egg is — height, speed, whether it is still flying — and your screen draws them from that. It never sends you the other players' hazards or scores; you already have the same course, and the standings come separately. If a friend is a little behind you on screen, that is the round trip to the server, not a slower egg.
Standings are worked out on the server
Scores are computed on the server rather than trusted from each player's browser, and the standings everyone sees come from the same place. That matters most in the ordinary case: a player with a slow connection, or a phone that dropped a few frames, gets the result their round actually earned. If you crash early, your egg leaves the others' screens and you can watch a friend who is still flying.
And the games that share a world
Most of the arcade's other multiplayer games take the opposite approach. Shellbreaker, Egg Stack, Ember Volley and the rest are shared worlds: everyone is in the same space, and bumping into each other is the point. Neon Nest shares a track. Bad Egg shares a house. Egg on the Run is the one where you share the screen and nothing else.
Can my friends' eggs hit me in Egg on the Run?
No. Everyone is drawn on the same screen, but the eggs pass through each other. Only the gates, fire and forks can end your run.
Does everyone get the same course?
Yes. The room's seed builds an identical course for every player, so scores are directly comparable.
Why is a friend's egg slightly behind mine?
Their position comes from the server a few times a second, so it trails by the network round trip. Everyone flies at the same speed.
What happens if someone disconnects?
The round continues for everyone else. A disconnected player's egg disappears from the screen and they keep the score they had earned.