Is it possible to send a table through a remote event and how do you send it?
I do it all the time and it's a wonderful way to write your RemoteEvents functions. Example:
--//Client side REvent:FireServer("Example", {1, 2, 3, 4, 5}) --// Server side REvent.OnServerEvent:Connect(function(player, request, data) if request == "Example" then for i, v in pairs (data) do print(v) end end end