i am trying to make a score in the top left corner of my screen but it is returning an error.
i have searched it up online and followed the exact steps but still it returns an error.
def score(rounds):
font = pygame.font.SysFont(None, 25)
text = font.render(f'ROUND {rounds}', True, size=25)
game_display.blit(text, (0,0))
render() takes no keyword arguments i have tried putting the True in as False but that didn't work. btw what does the middle argument True do?