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

IncrementAsync not an int value?

Asked by 4 years ago
01local DataStoreService = game:GetService("DataStoreService")
02 
03local deaths = DataStoreService:GetDataStore("PlayerDeaths")
04 
05 
06local function onPlayerJoin(player)
07    local leaderstats = Instance.new("Folder")
08    leaderstats.Name = "leaderstats"
09    leaderstats.Parent = player
10 
11 
12    local deaths = Instance.new("IntValue")
13    deaths.Name = "Accidents"
14    deaths.Parent = leaderstats
15 
View all 37 lines...

e and ee print the first newDeath results in "IncrementAsync is not a valid member of IntValue"

1 answer

Log in to vote
1
Answered by
DevingDev 346 Moderation Voter
4 years ago

You have 2 variables with the same name; deaths and deaths. One of them is of type IntValue and the other one is a Datastore.

Renaming of the deaths variable should do the trick. I recommend that you rename the first deaths variable to something like

1local deathsDatastore = DataStoreService:GetDataStore("PlayerDeaths")

and

1local deaths = Instance.new("IntValue")
2deaths.Name = "Accidents"
3deaths.Parent = leaderstats

You'll now need to change line 23 to

1return deathsDatastore:IncrementAsync(player.UserId, 1)
0
thanks i done goofed jamespringles 105 — 4y
Ad

Answer this question