Localscript trying to access replicated storage module script

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?

You can try using RemoteEvents/RemoteFunctions to get the data.

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