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

How do I save Multiple IntValues in a datastore?

Asked by
Kitorari 266 Moderation Voter
8 years ago
01local DataStore = game:GetService("DataStoreService")
02local ds1 = DataStore:GetDataStore("Point")
03 
04game.Players.PlayerAdded:connect(function(player)
05    local PointMaster = Instance.new("Folder",player)
06    PointMaster.Name = "Points"
07 
08    local Points = Instance.new('IntValue',PointMaster)
09    Points.Name = "Valu"
10    Points.Value = ds1:GetAsync(player.UserId) or 0
11    ds1:SetAsync(player.UserId,Points.Value)
12 
13local Points = Instance.new('IntValue',PointMaster)
14    Points.Name = "EXP"
15    Points.Value = ds1:GetAsync(player.UserId) or 0
View all 37 lines...
1This is what I've tried.

Can someone help or correct this?

1 answer

Log in to vote
0
Answered by 8 years ago

That should work... Unless you want them to be 2 different data stores. This one data store with 2 variables, which would work also.

Ad

Answer this question