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

Data storage saved. Script Print Error when not saved. What is wrong with the script?

Asked by 4 years ago

If data is saved then it will print error. My script print Error. It should have saved. what did I do wrong

01local DataStoreService = game:GetService("DataStoreService")
02local PlayerDataStore = DataStoreService:GetDataStore("PlayerDataStore")
03 
04game.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 
View all 37 lines...
0
Hmmm still error... HegemoneXT -45 — 4y
0
Hmm.... I added print after the first function and added print after the second function and it all ran, meaning that there is nothing wrong with my script, yet still it did not print "data saved" or "error" HegemoneXT -45 — 4y

2 answers

Log in to vote
1
Answered by 4 years ago

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.

Be sure to check out the Roblox API Documentation as well for additional reference.

0
lol thanks HegemoneXT -45 — 4y
0
error still does not work HegemoneXT -45 — 4y
0
it doesn't print anything now HegemoneXT -45 — 4y
0
Weird, are you getting any error in the Output? TaxesArentAwesome 514 — 4y
0
no HegemoneXT -45 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

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 
10local function resultHandler(co, ok, ...)
11    if not ok then
12        local message = (...)
13        error(debug.traceback(co, message), 2)
14    end
15 
View all 29 lines...

Answer this question