01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 |
03 | local deaths = DataStoreService:GetDataStore( "PlayerDeaths" ) |
04 |
05 |
06 | local 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 |
e and ee print the first newDeath results in "IncrementAsync is not a valid member of IntValue"
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
1 | local deathsDatastore = DataStoreService:GetDataStore( "PlayerDeaths" ) |
and
1 | local deaths = Instance.new( "IntValue" ) |
2 | deaths.Name = "Accidents" |
3 | deaths.Parent = leaderstats |
You'll now need to change line 23
to
1 | return deathsDatastore:IncrementAsync(player.UserId, 1 ) |