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
01 | math.randomseed(tick()) |
02 |
03 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local punchEvent = Instance.new( "RemoteEvent" , ReplicatedStorage) |
05 | punchEvent.Name = "PunchEvent" |
06 |
07 | local animations = { 3131953009 , 3131953009 } |
08 |
09 | local 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) |
it says the error is at line 15,16
You don't have to use FindFirstChild()
to get the Character and the Humanoid. You can use plr.Character
and then char.Humanoid
.
01 | math.randomseed(tick()) |
02 |
03 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local punchEvent = Instance.new( "RemoteEvent" , ReplicatedStorage) |
05 | punchEvent.Name = "PunchEvent" |
06 |
07 | local animations = { 3131953009 , 3131953009 } |
08 |
09 | local 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) |
01 | math.randomseed(tick()) |
02 |
03 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local punchEvent = Instance.new( "RemoteEvent" , ReplicatedStorage) |
05 | punchEvent.Name = "PunchEvent" |
06 |
07 | local animations = { 3131953009 , 3131953009 } |
08 |
09 | local 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) |
I recommend using waitforchild to prevent any errors.