Roblox Tables Script

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"}
			for i=1,#t4, 1  do
				FormatoLista:FireClient(t4[i])
				--print(t4[i])
			end
```

You can use RemoteEvents to send the info over.

1 Like