Help: System of survivors who escaped

hello guys, i wanted to make a system where i take the display name, name and photo of the survivors who managed to escape , add a frame with this information of the player who survived in a match result gui as soon as the match is over.

some examples are these:


(the template where the frame that the script will clone will be and put it in the list frame, example below:)


(i tried to make a mark but it turned out a bit ugly lol)

I don’t know how to start this script, let alone if it will work, so I hope you can help me!

You should consider separating the logic of loading selected maps and the UI updates. For example, the server can handle the map selection and loading logic, while the client receives updates about the status through a RemoteEvent. This makes your code more modular and easier to maintain. For instance, you can use RemoteEvent:FireAllClients to send Status and Colorr updates to the client interface.

Also, it’s better to replace global variables with local ones. This will improve script performance and avoid potential overwrites.

Okay, thanks for the recommendations! I’ll change the global variables to local ones! Regarding the recommendation to use RemoteEvent in Status and colorr, I don’t see much of a problem in not using this for enhancement.