How do I make a multiple winners list in a quiz game?

I’ve been making a quiz game lately and players need to put their answers in a text box so if they answer correctly their name should be written on the board with the questions. I’ve already made the script that says if they asnwered correctly but I have no idea how to take the winner’s names so that it appears on the board.

I really can’t find answers to my question so if anyone would be able to help…?

2 Likes

Get the players name that have won, loop through out the players and check their name if its the same as winners. Use a surfaceGUI on board or gui if its a screen board. Just instance or clone a text that says the player name.

and how do I take their names? I’m totally new to this so don’t be shocked that i don’t know this

actually i googled that so I think i know how to do this but i made that code in the text box so how can i “transmit” it to the board where the names should appear? i made a code in the text box where it says if the answer is correct and then i made another one in replicated storage to make points to know who won the whole game (the players get one point for correct answer) and now i need to make the names appear on the board (for each question so every time they get one point)

Use remote events. RemoteEvent | Roblox Creator Documentation

1 Like