Rock Paper Scissors•

Rock Paper Scissors•

Play RPS Battle Simulator

Details about Rock Paper Scissors

  • Released
  • Updated
  • iOS Version
  • Age Rating
  • Size
  • Devices
  • Languages
  • January 15, 2023
  • October 1, 2024
  • 16.1+
  • 4+
  • 1.95MB
  • iPhone
  • English

Features

Developer of Rock Paper Scissors

🙌57
Ratings
🗣❌ unsupported
Your locale
🖼️Download
Icons↘︎

Version History of Rock Paper Scissors

3.6

August 11, 2024

Improved Aggressive and Cautious modes

3.5

August 6, 2024

3.5 New features and fixes: - Health bars added on top of the screen. Click to add a new player - New AI modes - Other fixes and improvements 3.0 Meet the most epic Rock Paper Scissors• update! - Dynamic Battles: Add players mid-fight to customize your battlefield - Enhanced Audio: New sound effects add depth to each match - Select Custom Emojis: Create unique matches with personalized players - AI Variety: Choose from multiple AI modes for diverse challenges

More

3.1

August 1, 2024

3.1 Fixes and improvements 3.0 Meet the most epic Rock Paper Scissors• update! - Dynamic Battles: Add players mid-fight to customize your battlefield - Enhanced Audio: New sound effects add depth to each match - Select Custom Emojis: Create unique matches with personalized players - AI Variety: Choose from multiple AI modes for diverse challenges

More

3.0

July 30, 2024

Meet the most epic Rock Paper Scissors• update! - Dynamic Battles: Add players mid-fight to customize your battlefield - Enhanced Audio: New sound effects add depth to each match - Select Custom Emojis: Create unique matches with personalized players - AI Variety: Choose from multiple AI modes for diverse challenges

More

2.0

December 2, 2023

This is the biggest RPS update so far! - Updated the physics and players' behavior: it is now much more engaging - 3 battle types Small, Large, Extra Large - Removed widget functionality since it didn't work well

More

Rock Paper Scissors Simulator

November 5, 2023

Fixes and improvements

1.5

August 15, 2023

Fixes and improvements

1.4

August 13, 2023

Payment bug fixed

1.3

March 1, 2023

Much better game generation

1.1

January 19, 2023

Big AI update, and UI improvements

Rock Paper Scissors In-App Purchases History

$2.99

RockPaperScissors Unlock

Unlock All Features

Price History of Rock Paper Scissors

Description of Rock Paper Scissors

Rock Paper Scissors: the ultimate battle of emojis! Generate your own battles and watch as beautiful rock, paper, and scissors emojis face off on a virtual field. Introduce yourself to Rock Paper Scissors, the ultimate battle game on your home screen! With its straightforward and user-friendly interface, you can create your own battles and watch as rock, paper, and scissors face off on a virtual field. It's perfect for all ages, and a must-have for anyone who loves a good battle game. Terms of Use and Privacy Policy link: https://lekskeks.com/terms.html In-app purchases required for unlimited functionality The app icon uses Microsoft Fluent Emojis. They are licensed with MIT License: "MIT License Copyright (c) Microsoft Corporation. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE To learn more please go to https://github.com/microsoft/fluentui-emoji"
Show less

Rock Paper Scissors: FAQ

Can Rock Paper Scissors be used on iPad devices?

No, Rock Paper Scissors can’t be used on iPad devices yet.

Who is the developer of Rock Paper Scissors?

The Rock Paper Scissors app was launched by Alexey Primechaev.

What minimum version of iOS does Rock Paper Scissors need?

Rock Paper Scissors requires iOS 16.1 or later.

What do users think of the Rock Paper Scissors app?

Users have given Rock Paper Scissors a middling rating of 3.5 out of 5.

What is the main genre of the Rock Paper Scissors app?

Games Is The Primary Genre Of The Rock Paper Scissors App.

Which version of the Rock Paper Scissors app is the latest one?

The newest version of Rock Paper Scissors is 3.6.

What is the date of the latest Rock Paper Scissors update?

Rock Paper Scissors’s most recent update was on October 1, 2024.

When did the Rock Paper Scissors app come out?

The app first launched on July 25, 2023.

What age rating is assigned to Rock Paper Scissors?

Safe for children to use, no mature themes or inappropriate content.

Which languages does Rock Paper Scissors support?

Rock Paper Scissors currently features the following languages: English.

Is Rock Paper Scissors available in Apple Arcade's lineup?

No, Rock Paper Scissors is not available on Apple Arcade.

Are there in-app purchases available in Rock Paper Scissors?

Yes, Rock Paper Scissors offers in-app purchases to enhance your experience.

Is Rock Paper Scissors tailored for Apple Vision Pro compatibility?

Unfortunately, Rock Paper Scissors is not tailored for compatibility with Apple Vision Pro.

Does Rock Paper Scissors display any ads?

No, Rock Paper Scissors does not display any ads.

Video & Screenshots of Rock Paper Scissors

Rock Paper Scissors• video #1 for iPhone
Rock Paper Scissors• screenshot #2 for iPhone
Rock Paper Scissors• screenshot #3 for iPhone
Rock Paper Scissors• screenshot #4 for iPhone
Rock Paper Scissors• screenshot #5 for iPhone
Rock Paper Scissors• screenshot #6 for iPhone
iphone

Alternatives to Rock Paper Scissors

More Applications by Alexey Primechaev

Reviews of Rock Paper Scissors

Leave a Review Rock Paper Scissors
  • 😁

    Good
  • Great concept but horrible gameplay

    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
  • Could be satisfying

    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()
    Show less