How do I save Multiple IntValues in a datastore?
01 | local DataStore = game:GetService( "DataStoreService" ) |
02 | local ds 1 = DataStore:GetDataStore( "Point" ) |
04 | game.Players.PlayerAdded:connect( function (player) |
05 | local PointMaster = Instance.new( "Folder" ,player) |
06 | PointMaster.Name = "Points" |
08 | local Points = Instance.new( 'IntValue' ,PointMaster) |
10 | Points.Value = ds 1 :GetAsync(player.UserId) or 0 |
11 | ds 1 :SetAsync(player.UserId,Points.Value) |
13 | local Points = Instance.new( 'IntValue' ,PointMaster) |
15 | Points.Value = ds 1 :GetAsync(player.UserId) or 0 |
16 | ds 1 :setAsync(player.UserId,Points.Value) |
20 | Points.Changed:connect( function () |
21 | ds 1 :SetAsync(player.UserId,Points.Value) |
22 | print ( "Points Saved!" ) |
24 | exp.Changed:connect( function () |
25 | ds 1 :setAsync(player.UserId,exp.Value) |
32 | game.Players.PlayerRemoving:connect( function (player) |
33 | ds 1 :SetAsync(player.UserId, player.Points.Points.Value) |
1 | This is what I've tried. |
Can someone help or correct this?