Today i worked on the dodging game and played around with some fun backgrounds and changed some of the code. here’s screenshots and some of the code and the video i used to help

WIN = pygame.display.set_mode((WIDTH, HIEGHT))
pygame.display.set_caption("star dodge")
BG = pygame.transform.scale(pygame.image.load("images/Sunky background.png"), (WIDTH, HIEGHT))
PLAYER_WIDTH = 40
PLAYER_HIEGHT = 60
PLAYER_VEL = 4
STAR_WIDTH = 10
STAR_HIEGHT = 20
STAR_VEL = 5
FONT = pygame.font.SysFont("times new roman", 50)
here’s some of the code what this does is that it creates the window and name of the game and uploads the background picture
here’s a video of the gameplay you just dodge the purple rectangles(called stars) with hot-pink rectangle with a time counting up and the background has 2 speakers because I was having fun playing with backgrounds and i liked this one the most
here’s the video i used to help me code this game