Same service between places

I have a few places and i would like to store characters, weapon models etc in replicatedstorage.

could i have the replicatedstorage service the same between the places?

1 Like

They will never be the same across different unique place instances. If you want to include the exact same contents between places in an experience, you should either:

  • Tediously copy and paste the contents(packages can probably solve this)
  • MessagingService to create instance(more effort, but might break as well)
  • DataStores(not recommended, might break)
2 Likes