Data Storage Not Working Have Code?
I have this but it does not seem to store any data.
01 | local DataStore = game:GetService( "DataStoreService" ) |
02 | local ds = DataStore:GetDataStore( "AbilitySaveSystem" ) |
05 | game.Players.PlayerAdded:Connect( function (player) |
07 | local Power = Instance.new( "StringValue" ,player) |
09 | print (ds:GetAsync(player.userId)) |
10 | if ds:GetAsync(player.userId) ~ = "None" then |
11 | Power.Value = ds:GetAsync(player.userId) |
12 | print ( "He had an ability" ) |
15 | print ( "He had no ability" ) |
17 | ds:SetAsync(player.userId, Power.Value) |
18 | Power.Changed:Connect( function () |
19 | ds:SetAsync(player.userId, Power.Value) |
20 | print ( "Updated Ability: " .. ds:GetAsync(player.userId)) |
25 | game.Players.PlayerRemoving:Connect( function (player) |
27 | ds:SetAsync(player.userId, player.Power.Value) |
28 | print ( "Successfuly saved " ..player.userID.. ": " ..ds:GetAsync(player.userID)) |