Hello developers, I am making a character customization system and saving it with profile service, and I am use to making tables like this
local table = {}
but in the saving system I see other developers who stream and I see they save theirs like this
{
hairs{
bla bla bla
}
}
etc. how does it work with {
{
}
}
like how do I reference it? how do I use it?