So this isn’t so much an issue is it is a question. I’d like to know if there’s a way to request all of a data stores content. For example:
local DS = game:GetService("DataStoreService")
local DSS = DS:GetDataStore("D")
local Thing = {
--lots of contents here
}
local AnotherThing = {--[[more contents]]}
DSS:SetAsync("T", Thing)
DSS:SetAsync("TT", AnotherThing)
local Data = RequestAllofTheDataInTheDataStoreWithoutAGivenkey
print(Data) --should print:
AnotherThing = {--[[more contents]]}
Thing = {
--lots of contents here
}
this obviously isn’t formatted or coded correctly but I just wrote it in way I figured would give the best example of what I’m trying to achieve.