Data Not Replicating Across Universe

For some reason, I have leader stats in my game and have a separate place in the same universe, and I can’t access the leader stats in the separate place, I thought that the data would save between universes.

Hi @Rynappel:

As long as both places are part of the same game, you should be able to access the same DataStore in both of them. Make sure they have the same name:

local DataStoreService = game:GetService("DataStoreService")
local myDataStore = DataStoreService:GetDataStore("MyDataStore") 

As long as the name between the quotation marks is identical in both places, you’ll have access to the same DataStore.

Hope this helps!

1 Like

To transfer data across Universe you need to use Roblox Datastores

Oh I’ll play around and try something