Hi,
I received a report of a player experiencing data loss so I went to look into their old data and it just prints the memory address of the table instead of the expandable table?
Here’s what I’m putting in the console (ignore the lack of pcalls and terrible variable names, it’s a simple utility script I made for myself)
local dso = Instance.new('DataStoreOptions')
dso:SetExperimentalFeatures({v2 = true})
local key = game:GetService('DataStoreService'):GetDataStore('PLAYERDATA', nil, dso):ListVersionsAsync('redacted'):GetCurrentPage()
for i,v in ipairs(key) do
print(game:GetService('DataStoreService'):GetDataStore('PLAYERDATA'):GetVersionAsync('redacted', v.Version))
end
Outputs:
Any idea why it’s printing this instead of the expandable/collapsible table?