Multiple sprites on one screen

I want to sprites to show up next to each other, but so far, only one will show up on the screen. They are not overlapping. I am probably not coding it correctly so any help would be great.
Here’s what I have so far:

--Do your drawing here
background(0,208,255,255)
sprite("Planet Cute:Character Boy"),WIDTH/2, HEIGHT/2)
spriteMode(CENTER)

background(0,208,255,255)
sprite(Planet Cute:Character Pink Girl",WIDTH/3, HEIGHT/2)
spriteMode(CENTER)

Remove the second “background” line, you only need it once. It’ll draw the background then the sprites. You’re only seeing one sprite as the second background statement is covering the sprite just drawn. Hope that helps :slight_smile:

Thanks for the help :slight_smile: That really clears things up!