Cannot store array in DataStore when saving Table

(topic deleted by author)

I cannot stress this enough, do not attempt to build your saving data on the client and then fire it to the server. There’s a couple of things to talk about this:

  1. Your table has to cross the server/client boundary, which with tables can prove to be painful (mixed tables will return modified tables over the boundary iirc)
  2. Exploiters! They now have access to data saving, which is pretty critical.

So all in all, create your data on the server. The client should only be “responsive” to this data. It should be asking to “try” to modify it, and data that gets sent to it should only be treated as readable (to a degree of course).

I would resolve this issue before moving onto your data issue, since your data issue could be as a result of what you’re doing saving-wise.

1 Like

I found the actual error once moving everything to the server.
image