# Rock Paper Scissors• — user reviews

> 33 indexed App Store user reviews of Rock Paper Scissors by Alexey Primechaev, rated 3.91/5 from 129 ratings.

- Source: https://appshunter.io/ios/app/rock-paper-scissors/id1663308135/reviews
- App overview in markdown: https://appshunter.io/ios/app/rock-paper-scissors/id1663308135.md
- Rating breakdown: 5★ 70 · 4★ 11 · 3★ 7 · 2★ 1 · 1★ 23

## Newest reviews (10 of 33)

### 1/5 — cash grab

*2023-09-01*

obvious aswell

### 1/5 — shush

*2023-08-29, version 1.5*

the game is good but you have to pay even though it’s a free game it requires a subscription to play

### 1/5 — Not able to work

*2023-08-24, version 1.5*

Nothing works requires subscription altogether terrible game

### 1/5 — Segun gratis

*2023-08-15*

No te deja jugar sin pagar

### 1/5 — Scam - you have to pay

*2023-08-15*

You have to pay

### 1/5 — SCAM DON’T BUY THIS

*2023-08-07, version 1.3*

Omg don’t buy this because even if you do want to spend the $1 dollar to get the widget it lies and says one time fee and then on the second page says one dollar a MONTH that’s definitely not worth it. I hope no one falls for this and this is truly not ok.

### 1/5 — Please make it free

*2023-08-07, version 1.3*

This should not be payed, it’s literally watching rocks, paper and scissors fighting to the death. If you don’t want 1 star reviews then please make it free. Thanks.

### 1/5 — Obbligatorio pagare

*2023-08-06*

App inutile in cui è obbligatorio pagare

### 1/5 — You need to pay

*2023-07-30*

Im dumb enough to download the app but I’m not dumb enough to pay for that lmao

### 1/5 — L gameeeee

*2023-07-21, version 1.3*

I can’t believe I have to pay a dollar for a free to play game thats for kids this is honestly outstanding and this needs to be fixed right away L game

## Most critical reviews (10 lowest-rated)

### 1/5 — Pricing makes no sense

*2026-03-21, version 7.3*

What necessitates paying for this?

### 1/5 — Why do you have to pay just to play rock paper scissors

*2026-02-24, version 7.3*

I think every single one of these games are just money hungry because I do not want to pay for a free trial every three weeks just to play rock paper scissors game so no you don’t deserve five stars

### 1/5 — Not even that good

*2025-04-23, version 6.8*

I think it’s stupid how, after three free tries, you have to pay for a game that isn’t even that entertaining

### 1/5 — Waste of time

*2025-02-04, version 4.2*

You get to play like 3 times then have to play. Its a waste of money.

### 1/5 — Pay 2 Use

*2025-02-01*

I understand monetising the gamemodes, custom emojis and no ads, but limited simulations? If i have to pay to play more that 3 times then just make the app paid access from the start

### 1/5 — Great concept but horrible gameplay

*2024-09-16, version 3.6*

Now i might have said the title wrong BUT first this game had a good play, you put some rock some paper and scissors and see which one wins i played FOUR TIMES until it became some lackluster pay to play scam! plz dont play this game, im begging you all just dont play it

### 1/5 — Non funziona

*2024-09-14*

Il gioco è una foto ferma di sasso carta forbici che, la prima volta funziona ma solo la prima

**Developer response:** Ciao! Grazie per la tua recensione e mi dispiace per questo problema. Apprezzerei molto se inviassi il video dell'app che non funziona a monochromestudios@icloud.com, così potrei vedere esattamente cosa non va.

Igor

### 1/5 — Mid

*2024-07-04, version 2.0*

Having to pay for such a basic game is wild ☠️

### 1/5 — Complete scam

*2023-10-15, version 1.5*

As soon as I saw this app, I wanted it. But then I realized THAT YOU HAVE TO PAY FOR IT! What fun-looking game could scam me like that?!

### 1/5 — stupid

*2023-09-22, version 1.5*

they name the app “widget” but charge money for widgets

## Most praised reviews (10 highest-rated)

### 5/5 — Reasons why u should not get this app

*2025-08-06, version 7.0*

I have to pay money after one round

### 5/5 — Sehr gutes Spiel

*2025-01-05*

Man muss nicht bezahlen um zu spielen was ich sehr gut finde. 
Jungs macht weiter so ❤️❤️

### 5/5 — Fun

*2024-11-15, version 4.0*

This game honestly is just so satisfying to play, I do it so much in my free time

### 5/5 — 😁

*2024-09-28, version 3.6*

Good

### 5/5 — Hope this helps

*2024-08-29, version 3.6*

5 stars for the game

### 5/5 — Puoi giocare veramente pochissimo

*2024-08-21*

Se non paghi 2,99€ non ti fa giocare.. Penso che lo compreró perché il gioco è carino!

### 5/5 — Good

*2023-08-27, version 1.5*

Good

### 5/5 — Good night my friend love I

*2023-08-02*

The only way I could see

### 4/5 — Three games of it then sit makes you pay

*2024-09-19, version 3.6*

That’s all

### 3/5 — Could be satisfying

*2024-09-07, version 3.6*

Your items are not bouncing of the walls. They get stuck in a corner making for the others to easily take over or be taken over since there’s no variety in movement. Here is an example code that’ll make bouncing possible. Of course this code is made no knowing what script you use for coding.

box = Circle(600,300,10)

run = True
start = False
clock = pygame.time.Clock()

while run:                     
    clock.tick(120)  

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            run = False

    keys = pygame.key.get_pressed()
    if keys[pygame.K_SPACE]:
        start = True

    bounds = pygame.Rect(450, 200, 300, 200)
    if start:
        box.y -= box.vel_y        
        box.x += box.vel_x

        if box.x - box.radius < bounds.left or box.x + box.radius > bounds.right:
            box.vel_x *= -1 
        if box.y - box.radius < bounds.top or box.y + box.radius > bounds.bottom:
            box.vel_y *= -1 

    window.fill((0,0,0))
    pygame.draw.rect(window, (255, 0, 0), bounds, 1)
    pygame.draw.circle(window, (44,176,55), (box.x, box.y), box.radius)
    pygame.display.update()

---

*Data collected daily from the US App Store and indexed by [AppsHunter](https://appshunter.io/). User reviews are verbatim App Store reviews. Ratings, prices and chart positions refresh continuously; this snapshot is from 2026-08-13.*
