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

attempt to index local 'humanoid' (a nil value)???

Asked by 5 years ago

im having a problem with a punching script where when the character presses the key to punch it throws me a error saying " ServerScriptService.Punch:16: attempt to index local 'humanoid' (a nil value)"

heres the script

01math.randomseed(tick())
02 
03local ReplicatedStorage = game:GetService("ReplicatedStorage")
04local punchEvent = Instance.new("RemoteEvent", ReplicatedStorage)
05punchEvent.Name = "PunchEvent"
06 
07local animations = {3131953009, 3131953009}
08 
09local function onPunchFired(plr)
10    local char = game.Workspace:FindFirstChild(plr.Name)
11    local humanoid = char:FindFirstChild("Humanoid")
12    local animation = Instance.new("Animation")
13    local picked = math.random(1, #animations)
14    animation.AnimationId = "http://roblox.com/asset/?id="..animations[picked]
15    local animTrack = humanoid:LoadAnimation(animation)
View all 29 lines...

it says the error is at line 15,16

2 answers

Log in to vote
0
Answered by 5 years ago

You don't have to use FindFirstChild() to get the Character and the Humanoid. You can use plr.Character and then char.Humanoid.

01math.randomseed(tick())
02 
03local ReplicatedStorage = game:GetService("ReplicatedStorage")
04local punchEvent = Instance.new("RemoteEvent", ReplicatedStorage)
05punchEvent.Name = "PunchEvent"
06 
07local animations = {3131953009, 3131953009}
08 
09local function onPunchFired(plr)
10    local char = plr.Character --Changed from getting the character from workspace from plr name
11    local humanoid = char.Humanoid
12    local animation = Instance.new("Animation")
13    local picked = math.random(1, #animations)
14    animation.AnimationId = "http://roblox.com/asset/?id="..animations[picked]
15    local animTrack = humanoid:LoadAnimation(animation)
View all 29 lines...
Ad
Log in to vote
0
Answered by 5 years ago
01math.randomseed(tick())
02 
03local ReplicatedStorage = game:GetService("ReplicatedStorage")
04local punchEvent = Instance.new("RemoteEvent", ReplicatedStorage)
05punchEvent.Name = "PunchEvent"
06 
07local animations = {3131953009, 3131953009}
08 
09local function onPunchFired(plr)
10    local char = game.Workspace:FindFirstChild(plr.Name)
11    local humanoid = char:WaitForChild("Humanoid")
12    local animation = Instance.new("Animation")
13    local picked = math.random(1, #animations)
14    animation.AnimationId = "http://roblox.com/asset/?id="..animations[picked]
15    local animTrack = humanoid:LoadAnimation(animation)
View all 29 lines...

I recommend using waitforchild to prevent any errors.

0
You shouldn't have to use WaitForChild(), the player and it's character should already be loaded in by the time this is called. BennyBoiOriginal 293 — 5y

Answer this question