hi Roaminggamer,
i would have a tank of player with multi-element.
In fact, i would have a player with physics and with a text above his head and the text follow the player.
With you code i have an error probably the “s” of player and the transition don’t work.
I have wrote an runtime to have the text that follow the player but it’s not fully good in term of performance. a group with table would be better…
local player = {} for i = 1, 5 do local player= display.newGroup() player.body = display.newCircle(player,0,0,10) player.head=display.newCircle(player,0,-20,5) player.x = 100 + (i-1) \* 15 player.y = 100 players[i] = player --player with S ? end transition.to(players[1],{time=700,x=400,y=300})--bug don't work transition.to(players[2],{time=700,x=500,y=300})--bug don't work transition.to(players[3],{time=700,x=400,y=500})--bug don't work