Table value appearing when printing it's parent table, but returning nil with printing it directly

This is the table I am trying to print. It has lighting properties for each time of day.

Heres what it looks like when I print it:
Screen Shot 2024-01-13 at 1.53.20 PM

Heres what it looks like when I try to print one of its child tables:
Screen Shot 2024-01-13 at 1.53.38 PM
Screen Shot 2024-01-13 at 1.54.43 PM

I have zero clue why this is happening so any help is greatly appreciated.
Thanks!
Lucid

Your table here is a dictionary, you are trying to index it numerically which wont work

You should do

print(timesLightingProperties.Noon)
1 Like

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