|
| 13 Jul 2016 08:22 PM |
nothing seems to work when i use it..
|
|
|
| Report Abuse |
|
|
|
| 13 Jul 2016 08:23 PM |
Pretty sure it's just you. An admin sent out a tweet saying it was fixed and we can return using it in solo mode. It started working for me after he said that.
|
|
|
| Report Abuse |
|
|
|
| 13 Jul 2016 08:26 PM |
ugh. what am i doing wrong??
DataStore = game:GetService("DataStoreService") DS1 = DataStore:GetDataStore("SavePoints")
game.Players.PlayerAdded:connect(function(player) wait(1) print("test") p = player.PlayerGui.ScreenGui.Points p.Value = DS1:GetAsync(player.UserId, p.Value) or 0 DS1:SetAsync(player.UserId, p.Value) p.Changed:connect(function() print("Saving Data..") DS1:SetAsync(player.UserId, p.Value) print("Saved Data") end) end)
game.Players.PlayerRemoving:connect(function(player) DS1:SetAsync(player.UserId, player.PlayerGui.ScreenGui.Points.Value) end)
|
|
|
| Report Abuse |
|
|
| |
|