How do you let other servers know when you update data?

I’m making a ban system, and I want it to be as efficient as can be. So what I’m confused about currently is that when you add a player to your banlist how can you make it tell every other server that a new player’s been added to the banlist and update the data for each server that receives communication?

1 Like

MessagingService sounds like exactly what you’re looking for. But I’m not sure what the usage case you’re looking for would be… Once you update a datastore in one server the data will be the same for all servers. You shouldn’t need to update all servers.

1 Like

Yeah thanks for your help I just realized I was using tables when I could just be saving with data instead of updating tables.