Rock Paper Scissors
Play against the computer. Cryptographically random — it cannot cheat.
You
Computer
Press R Rock · P Paper · S Scissors
Wins
0
Draws
0
Losses
0
Play against the computer. Cryptographically random — it cannot cheat.
You
Computer
Press R Rock · P Paper · S Scissors
Wins
0
Draws
0
Losses
0
Our online Rock Paper Scissors game pits you against a computer opponent that picks its move using cryptographically secure randomness — meaning it has absolutely no way to predict or react to your choice. Each round is a perfectly fair 1-in-3 chance for each outcome. Whether you want to make a quick decision, settle a bet, or just have fun, this is the fastest way to play RPS online with no download and no sign-up.
Yes. This tool uses crypto.getRandomValues() — the same Web Crypto API used in security
applications — to pick the computer's move. Each of the three choices has an exactly equal 33.33%
probability on every round. The computer's pick is finalised before your choice is even processed, so there
is no cheating possible. For a deeper look at the math behind RPS — including why pure randomness is the
optimal strategy — read our guide: Rock Paper Scissors: The
Math, Psychology & Optimal Strategy.
crypto.getRandomValues(), a cryptographically secure
random number generator, to choose Rock, Paper, or Scissors with exactly equal probability. It
cannot read your input before deciding.Explore the math, psychology, and optimal strategy in our Rock Paper Scissors: The Math, Psychology & Optimal Strategy guide.