So currently i’m working on something which involves storing lots of data however to create an efficient saving system i’m using table.insert to transfer folders into tables however im confused of how I would insert an empty table with a name into a table. Here is what I mean
You can’t even use table.insert this way, it’ll throw an error. table.insert also inserts at a numerical indice as opposed to the hash map, meaning @anon81993163’s solution is wrong in part.
On the other hand, that code is appropriate if you’re looking to insert an indice of Levels with a table value to DataToSave, which is probably what you should be doing.