Tables with the Dev Console?

Hey there!

I am trying to find the issue to a bug that I can’t figure out. I need to print a couple tables using the roblox player, not studio, as the bug seems to be happening to only one person. The problem is I can’t read them, it may have something to do with them being _G’s but I don’t know, is there a way I can read them?

If you’re referring to how it returns the memory address of the table, you probably will need to print them one by one

Basically this

local tbl = {"Apple", "Mango", "AAAA"}

for _, v in pairs(tbl) do
    print(v)
end

Proper table printing is mostly just a studio thing. Unless you are referring to something else

1 Like