So I decided to start making a game and I was testing it a bit and then I got this error:
Traceback (most recent call last): File \"TheAviGame.py\", line
You put None in the font:
None
font = pygame.font.Font(None, 25)
You can’t do that. You have to put a type of font there.
And you should call pygame.init().
pygame.init()