Rock Paper Scissors
Play Rock Paper Scissors against the computer — truly random, nothing uploaded.
Play Rock Paper Scissors online
Click a move and the computer picks one at random using crypto.getRandomValues — the same cryptographic random source used for security tokens. No server, no patterns, no cheating.
Rules: rock beats scissors, scissors beats paper, paper beats rock. Same move is a draw.
FAQ
Is the CPU truly random? Yes — each pick uses crypto.getRandomValues, which is cryptographically unpredictable.
Is anything stored or sent? No — the game runs entirely in your browser.