How do I store more then one data in DataStore2

I know you can do DataStore2.Combine() but I want it to stay organized by combining one thing for my swords, my cash. Would it let me?

most poeple use a single store and save a table as it is very organized to use. For example,
Data = {coins = 34, deaths = 23, ownsSword = true} is a kind of table you would save as it is more efficient and faster then making new ds2 stores for each element.

Can you do this?

DataStore2.Combine(
"XD",
"LOL",
"YOURMOM"
)

im not familiar with ds2 but thats not what im saying. I am stating to use tables when you use the :Set() or :Update() functions. The whole point of this is having a single masteky and combine table.

Maybe you would get a better answer if you ask in the original DataStore2 post

Edit: Or you can save a table under a data in combine
Like


local TableFormat = {
-- Table stuff
} 
DataStore2.Combine("Data", "Table") 

local TabelStore = DataStore2("Table", plr) 

TabelStore:GetTable(TableFormat)