I made this on python and decided to upgrade/rework it and put it in Scratch. BTW if every Scratcher played this game less than 4 million would win.
@cs4316625 because he helped me with the coding. Here is the code for the game in python. It won't work if you haven't installed random. To install it, go to PowerShell and type the following: pip install random. import random correct = True correct_rounds = 0 while correct == True: number = random.randint(1, 2) guess = int(input("What is your guess?(1 or 2): ")) if guess == number: print("Correct!") correct_rounds = correct_rounds + 1 else: print("Incorrect!") correct = False if correct_rounds != 0: if correct_rounds != 1: print("Good job!") else: print("That's okay, I guess...") else: print("That was trash.") print("You guessed correct for " + str(correct_rounds) + " straight round(s)")