If data is saved then it will print error. My script print Error. It should have saved. what did I do wrong
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local PlayerDataStore = DataStoreService:GetDataStore( "PlayerDataStore" ) |
03 |
04 | game.Players.PlayerAdded:Connect( function (player) |
05 | local leaderstats = Instance.new( "Folder" , player) |
06 | leaderstats.Name = "leaderstats" |
07 |
08 | local points = Instance.new( "IntValue" , leaderstats) |
09 | points.Name = "Points" |
10 | local PlayerID = "player" ..player.UserId |
11 |
12 | local PlayerData |
13 | local success, errormessage = pcall ( function () |
14 | PlayerData = PlayerDataStore:GetSync(PlayerID) |
15 |
Howdy!
It's :SetAsync()
, not :SetSync()
. Look at line 14 and 28. You can read more about this here.
If this helped you out, consider accepting this answer for those sweet, sweet reputation points. If not, comment below and I (or someone else) will help you out.
This is what it says
01 | --[[ |
02 | Calls a function and throws an error if it attempts to yield. |
03 |
04 | Pass any number of arguments to the function after the callback. |
05 |
06 | This function supports multiple return; all results returned from the |
07 | given function will be returned. |
08 | ]] |
09 |
10 | local function resultHandler(co, ok, ...) |
11 | if not ok then |
12 | local message = (...) |
13 | error (debug.traceback(co, message), 2 ) |
14 | end |
15 |