I have a module script that has a table inside
local module = {}
module.Data = {}
return module
this data is being updated by the server. I’m now trying to access it from a local script but that doesn’t seem to work and returns a blank table even if the server finds data into it. how can I avoid this?