(useless post delete this pls)

sorry for wasting yalls time lol this post has no point in existing and i cant delete it so ima just leave it like this ig

1 Like

You’re probably printing the table and not the values inside the table, you can do something like

local table = {1, 2, 3}
for i, v in table do
print(v)
end
1 Like

I don’t think the strings are created based on the contents of the table, or even the name of the table. I could be wrong though. To test this just make two tables with same name and content and print them.

1 Like

im just looking for what type of code this is or how i decode it

1 Like

Isn’t this just a random id for the table that doesn’t mean anything though? Correct me if I’m wrong

1 Like

I think it’s the location in memory at which the table is stored.

4 Likes

This is just hexadecimal encoding, likely to represent a location in memory. This will not decode into english plaintext.

Notice the prefix “0x”.
0b = binary
0o = octal
0x = hex

4 Likes

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