Save Parent String value in folder to data storage

Basically doing record system, but I can’t save folders. or idk how I do it cuz am prob dumb and everyone will now laugh

Anyway, there is Records
folder > 1St map > Record set.Value
folder > 2Nd map > Record set.Value

idk if you get this but I want to have the Parent in data storage too ig

Then just save the name of the parent as a string

you mean like I first get the Record value and save not only the Value it self, but the parent name too?

Yeah just save a table which contains two items

  1. The record value
  2. The record parent
local tbl = {"Parent", 20}

To acess this data just do tbl[1] for 1st index and tbl[2] for the 2nd

1 Like