So what I'm trying to do is save a block's data to a dictionary, then add that dictionary to a table. Then on, I could save it to the client's datastore.
What I'm dealing with:
Whenever I do this I get an error stating that the table data is nil.
Script:
01 | local objects = workspace.Objects |
02 | local data = { } |
03 |
04 | for i,v in pairs (objects:GetChildren()) do |
05 | local bu = { |
06 | Name = "Box" , |
07 | PosX = v.Position.X, |
08 | PosY = v.Position.Y, |
09 | PosZ = v.Position.Z, |
10 | Rot = v.Rotation.Value |
11 | } |
12 | table.insert(data, bu) |
13 | end |
I don't know why, but I know I'm doing something wrong.
Your code does indeed store the bu tables into the data table, but they can't be referenced because it lacks key indices and hashes. Because you can't reference them, they become nil when you try to.
You can either use a for loop and just iterate through the "data" table to get its elements like this,
1 | for i, v in pairs (data) do |
2 | print (v) |
3 | end |
or you can replace
1 | table.insert(data, bu) |
in the existing loop with
1 | table.insert(data, i - 1 , bu) |
to specify the index of the table.