abdtou 7175
abdtou 7175

Reputation: 25

attempt to index field 'LocalPlayer' (a nil value)

i have been trying to fix this problem in my game: "attempt to index field 'LocalPlayer' (a nil value)"

but nothing i tried to do worked here is the code:

please do not mind the extremely un-efficient lines of code

local player = game.Players.LocalPlayer

script.Parent.Humanoid.Died:Connect(function()
    print("yeet")
    script.Parent.Parent.Parent.Players.LocalPlayer.leaderstats.PuzzlePieces.Value = script.Parent.Parent.Parent.Players.LocalPlayer.leaderstats.PuzzlePieces.Value + 1
end)

and this is the error message i get:

attempt to index field 'LocalPlayer' (a nil value)

Upvotes: 0

Views: 1504

Answers (1)

moo1210
moo1210

Reputation: 73

LocalPlayer can only be used in localscripts, and if you are changing leaderstats, you would need to use remotefunctions if your using the localplayer way, or you could use a script and then detect is a player dies and give them a leaderstat value.

PS. If your into roblox I very well recommand https://scriptinghelpers.org/, it is a great roblox scripting Q&A.

Upvotes: 1

Related Questions