Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Multi Place Save is possible on roblox?

Asked by 5 years ago

Example

local rank = data:GetDataStore("Rank1")
game.Players.PlayerAdded:connect(function(player)
    local saverank = rank:GetAsync(userid)
    player.Data.Rank.Value = saverank or 1
end end)
game.Players.PlayerRemoving:Connect(function(player)
    rank:SetAsync(player.UserId,player.Data.Stats.Rank.Value)
end end)

Another game in this place

local rank = data:GetDataStore("Rank1")
game.Players.PlayerAdded:connect(function(player)
    local saverank = rank:GetAsync(userid)
    player.Data.Rank.Value = saverank or 1
end end)
game.Players.PlayerRemoving:Connect(function(player)
    rank:SetAsync(player.UserId,player.Data.Stats.Rank.Value)
end end)

is its possible

0
no impossible dark_nineret -25 — 5y
0
I'm pretty sure it is possible. Cooltech90 -3 — 5y
0
it's possible. it's just that all your places have to be part of one main game or something like that ScrubSadmir 200 — 5y

Answer this question