Can no longer print tables in the console?

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:
image
Any idea why it’s printing this instead of the expandable/collapsible table?

I recently made a post on this: How to print a table - #13 by HugeCoolboy2007 (disable log mode)

1 Like

Oh, I could’ve sworn I never messed with that. Thanks!

1 Like