Module dictionary only updates on the server?

So im making a roster system if you’ve ever played a tower defense game you probably know what I mean. Anyways, im making a dictionary in a ModuleScript that stores the current roster and im currently making the gui to show the current roster but it turns out as a blank table even though im filling it up in a server script. Should I just use a remote function to get the roster or is there another method to do it from the client?

1 Like

Yes if a script requires and changes a modulescript this will be only on server there is no replication.

1 Like

So just use a remote function?

2 Likes

If you want to get info from a module script that is loaded on the server, your best bet is to just use a remote function and return the roster info to the client.

1 Like

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