Is there any way to transfer a table from a ServerScript to a LocalScript, I would like to transfer the player names from one table in ServerScript to another table in LocalScript
Example
local t4 = {"josa","pepe","mike"}
FormatoLista:FireClient(t4)
```
Of course there is, you just send the fireclient to a specified player with the table and have a local variable table inside the specific local script that you want to contain the table and it’ll update everytime you fire.
How would this be?, I am creating a gui for each player from ServerScript and start generating frames with the information from the table, so each player should have the same information from ServerScript