Tables being printed into numbers in output

Hey, I’m currently having trouble understanding why my table is being printed into a string of random numbers and letters rather than showing a table in a sort of hierarchy format.

Problem:
image

What I want it to look like:

Here’s my script and module script just case.

Normal Script

  local ModTable = require(script.ModuleScript)
  
  print(ModTable)

Module Script

local module = {"I just hit a dance!"}

return module

1 Like

When you print a module script table, it prints the memory address of the table, not the contents, so you would most likely have to use a for loop, or a not recommendable way, reassign the information to a new table in your script.

you may have enabled log mode
press the 3 dots on the top right of the console

{2CD1622D-AC7C-411A-A08C-CBDA58645D5E}

and disable Log mode

{3F396A74-6998-494D-9CF0-D51BD661FB3F}

4 Likes

Yep, just found that out lol, thanks for your help anyways! :slight_smile:

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.