Hi,
It looks like it’s flickering because you’re only creating a single image and then starting many transitions on it. That means you have many transitions fighting over a single object, and your single object flickers about screen as it X/Y position is constantly shifted.
To create the effect of moving multiple images, you need an approach like:
--For each object in the people table... for i=1, #people do --Create an image local img = display.newImage("images.jpg") --Transition it transition.to(img, {time=5 ... etc ..}) end
This will create a separate image for each object in your person array, then move it.