I’m currently making a datastore module, and I ran into a problem, a script loops through the folder that the data is kept in, it adds the name to the table. But I want to add the value and the name, so like this local table = {dataBool.Value}
Heres the script I have already.
local TableToSave = {}
for i,data in pairs(FolderToSave:GetChildren()) do
table.insert(data.Name, TableToSave)
print("Saving "..i.." Items")
end