Help with "character" voting system (like Fashion Famous)

Hi! I need help to create a system like Fashion Famous where all the players take turns and going out one-by-one to the catwalk and the others have to give them a score from 1 to 5 for how they are dressed. At the end a podium is made with the 3 players with the highest score. I have searched many sites and I don’t understand how to do it.

EXAMPLES:

Sorry if I am not making myself clear.

3 Likes
  • Fire a remote whenever a player votes, pass a number as a argument. Might be a good idea on the server to check if that integer parameter of the vote they submitted is less than or equal to five.

  • Once voting has finished, add up all the vote integers and store all votes made for that specific player in a table or dictionary, with one value/key being the UserId or name, and one value being the total amount of votes they got.

  • At the end, sort the table from the integer you stored. (There are devforum resources on how to do this)

  • You can have 3 humanoids on the podium, and based on what was returned from from the sorted table, you can load the humanoid appearance description based on that.

This should be a general basis of how to do that. If you need more help let me know.

1 Like