I'm using tables in Modules to store my data and save my data, the data is nil. Anyone know why?
Solved! Thanks for your help :)
You are setting the metatable right and then trying to use functions with :
but didn't you forget to set
MetaData.__index = MetaData
Because these functions are not members of the Data table so the __index then fires and looks for the function in MetaData table.