Making a turn based game and wondering how to move the players character with the position in the index

I am making a multiple player turn based game and was wondering how I would make the players character be in line with the index position theyre at and have them move down as a line for each turn taking and then to move them back.

For example:

Character row: p1, p2, p3, p4

Dictionary: { [1] = p1, [2] = p2, [3] = p3, [4] = p4 }

Hopefully this helps with what im trying to explain on what Im doing.

I know how to the turn based system just not the character stuff.

2 Likes

so do they move in a grid or smth

2 Likes

If I read this correctly, I think you are asking to move to a certain spot, and then move back. You can use Humanoid:MoveTo(position) to move the player to a specific spot.

2 Likes

I’ve already figured out a system sorry. But thank you for your reply.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.