You must track and update data in your main application. You need to broadcast recently updated data to all connected clients to deliver updated data. after any update from any client, you should send updated data to all connected clients.
In a remote shared entity, FMS is used to centrally maintain data on a network-connected application through FMS. when any client sends an updated OnSync event, it is launched into the entire client application, and the data is synchronized with the FMS Remote Shared Object. So, you must develop this type of stream for the correct synchronization of data over the network.
You can also use the RPC system to synchronize data between all connected applications to the main application. in that you need to run RPC for the client so that the Master application sends the data update, and the main application sends RPC to all other clients that are connected to the main application.
source share