Shotgun Roulette: What You Are Actually Playing, and How to Win It
"Shotgun roulette" is the phrase most players reach for after finishing Buckshot Roulette — a one-on-one duel where the weapon is passed back and forth and every turn is a decision about who takes the next shot. The free browser build on this page is that duel, with one honest clarification worth making up front: the weapon in it is a revolver, not a shotgun. What it keeps is the part that matters — a two-player standoff with real choices, not a coin flip.
The Build Behind This Page
The game embedded above is Virtual Russian Roulette, a Unity WebGL build published by AxBox on itch.io. It is free, listed for HTML5 and Windows, tagged as Strategy and Singleplayer, and the current version is v1.1. The itch.io page does not list a release date, so this guide does not claim one.
That "Strategy" tag is not decoration. The developer's own description is explicit: "Play Russian Roulette on your computer, except there's a little bit of strategy involved." Anything you have read describing this as a pure luck game is wrong — the rule set below is what makes it playable.
The Rules That Create the Decisions
Every turn you pick one of three actions:
- Shoot yourself.
- Shoot your opponent.
- Spin the cylinder.
Two constraints turn those three options into an actual game:
- You may only spin the cylinder once per game, and after spinning you must still perform another action that turn. The reset is a single, spendable resource.
- You must shoot yourself after attempting to shoot your opponent. Aiming at them is never free.
That second rule is the whole design. Read it again before your first game — most players lose their first few rounds because they treat "shoot the opponent" as a risk-free attack.
Where the Real Decisions Are
Assume the cylinder holds one live round in an unknown chamber, no spin has been used, and k chambers remain untried. The math below is derived from the rules above, not read off the game.
Aiming at your opponent does not raise your own risk. If you shoot yourself, you die with probability 1/k. If you shoot your opponent instead, you win outright with probability 1/k; otherwise you survived chamber k and must now take the mandatory shot with k−1 chambers left, which kills you with probability 1/(k−1). Multiply that out and your own death chance is (k−1)/k × 1/(k−1) = 1/k — identical either way.
So the aggressive line is free in the short term. What it costs you is chambers: aiming at the opponent burns two chambers per turn instead of one, which changes who is standing at the end.
Parity decides the endgame. When exactly one chamber is left, the player whose turn it is simply shoots the opponent and wins. Every chamber you burn flips whose turn that will be. This is the counting problem the game is actually asking you to solve — not "what are my odds right now," but "who is on turn when the cylinder runs out."
The one number to track
Keep a running count of chambers already fired. Your own risk this turn is the same whichever way you point the barrel, so spend your attention on parity instead: work out who lands on the final chamber, then choose the action that puts your opponent there.
Spending the Spin
The single spin is worth the most when two conditions line up: few chambers remain, so the live round is highly concentrated, and the parity count says the endgame belongs to your opponent. A spin resets both at once. Burning it early — while the odds are still thin and the count is still long — throws away the only reset the game gives you.
Hardcore Mode
Version 1.1 added Hardcore Mode, where you shoot yourself twice instead of only once. Doubling the self-shot roughly doubles what a defensive turn costs you and drains the cylinder much faster, which makes the parity counting above tighter and less forgiving. Play the standard mode until the counting is automatic.
If You Want the Shell-Counting Version
This build is the revolver take on the duel. The games that put a real shotgun and an information layer on top of the same skeleton:
- Buckshot Roulette — a shotgun with a declared live/blank shell count plus an item system. The deepest strategy game in this group, and the one that popularised the format.
- Orange Roulette — the cartoon-oranges original, with personality-driven opponents instead of gore.
- Russian Roulette — the stripped-down pure-chance simulator, useful for feeling how much the strategy layer here actually adds.
For how the risk math changes once shell counts and items enter the picture, see the mechanics and risk analysis.
Frequently Asked Questions
Is Shotgun Roulette free to play here?
Yes. It runs free in the browser with no download, no install, and no account. The developer also lists a free Windows build on itch.io if you want it offline.
Does it work unblocked at school or work?
It is a browser build with nothing to install, so it works anywhere the page loads and the network filter allows the embedded content — that install step is usually the part school networks block.
Can I play it on mobile?
Not reliably. This is a Unity WebGL build, and the build itself displays a warning that WebGL is not supported on mobile devices. Use a desktop or laptop browser. If you want a roulette game that is comfortable on a phone, Orange Roulette is the better pick.
Is it actually a shotgun?
No — the weapon is a revolver with a cylinder you can spin. "Shotgun roulette" is the search term players use for this style of turn-based duel; the shotgun-and-shell-counting version of it is Buckshot Roulette.
Is there real strategy, or is it just luck?
There is real strategy. Your own risk on a given turn is the same whichever target you pick, so the skill is in chamber parity — controlling who is on turn when the cylinder runs down — and in saving your one spin for the moment it flips that count.
Is this based on something real?
The concept comes from the Russian roulette trope, popularised by Georges Surdez's 1937 short story in Collier's rather than by any documented military practice. This is a game about that idea, and nothing here is something to attempt off a screen.