Showing Lots of sprites with one function call and a loop

How can you get it so that one sprite call can get a group of sprites to show?

I can’t figure it out mine will only have one up at a time.

Please help me.

@pac Try this example using multiple for loops.

displayMode(FULLSCREEN)

function setup()
end

function draw()
    background(40, 40, 50)
    for x=1,30 do
        for y=1,40 do
            sprite("Planet Cute:Character Horn Girl",x*40,y*40,40)
        end
    end    
end

Thanks it works I will change May code to work thanks

Hey thanks again I changed my code and now it works thank you thank you thank you