When i made a kill block with script, the output executes error that says :
11:28:55.932 - Workspace.Basic traps and power ups tutorial.Trap.Script:7: attempt to index local ‘humanoid’ (a nil value).
However, the script itself works fine and it does make humanoid health to 0. Can someone help me to know what is the error with this script?
01 | local trapPart = script.Parent |
02 |
03 | local function onPartTouch(otherPart) |
04 |
05 | local partParent = otherPart.Parent |
06 |
07 | local humanoid = partParent:FindFirstChildWhichIsA( "Humanoid" ) |
08 |
09 | if ( "humanoid" ) then |
10 |
11 | -- Set player's health to 0 |
12 |
13 | humanoid.Health = 0 |
14 |
15 | end |
16 |
17 | end |
18 |
19 | trapPart.Touched:Connect(onPartTouch) |
I believe you use the wrong syntax. In the if statement (Where it says if ("humanoid") then
),the if statement is confirming the string: humanoid, not the variable: humanoid. Also, you do not need to use :FindFirstChildWhichIsA()
, but it is totally up to you. Thus, the script would be:
Without :FindFirstChildWhichIsA()
1 | local trapPart = script.Parent |
2 | local function onPartTouch(otherPart) |
3 | local partParent = otherPart.Parent |
4 | local humanoid = partParent:WaitForChild( "Humanoid" ) |
5 | if humanoid then -- Set player's health to 0 |
6 | humanoid.Health = 0 |
7 | end |
8 | end |
9 | trapPart.Touched:Connect(onPartTouch) |
With :FindFirstChildWhichIsA()
1 | local trapPArt = script.Parent |
2 | local function onPartTouch(otherPart) |
3 | local partParent = otherPart.Parent |
4 | local humanoid = parentParent:FindFirstChildWhichIsA( "Humanoid" ) |
5 | if humanoid then -- Set player's health to 0 |
6 | humanoid.Health = 0 |
7 | end |
8 | end |
Accept my answer if it works for you!
Hi Yuuwa0519, the reason because your code don´t executes as well is because you are using a string as condition if ("humanoid")
instead of if (humanoid)
.
Fix:
1 | local Trap = script.Parent |
2 |
3 | Trap.Touched:Connect( function (instance) |
4 | local Humanoid = instance.Parent:FindFirstChildWhichIsA( "Humanoid" ) |
5 | |
6 | if Humanoid then |
7 | Humanoid [ "Health" ] = 0 |
8 | end |
9 | end ) |
I believe you’re not following the syntax of Roblox.
01 | local trapPart = script.Parent |
02 | |
03 | local function onPartTouch(otherPart) |
04 | |
05 | local partParent = otherPart.Parent |
06 | |
07 | local humanoid = |
08 |
09 | partParent:FindFirstChildWhichIsA( "Humanoid" ) |
10 | |
11 | if ( humanoid ) then |
12 | |
13 | -- Set player's health to 0 |
14 | |
15 | humanoid.Health = 0 |
16 | |
17 | end |
18 | |
19 | end |
20 | |
21 | trapPart.Touched:Connect(onPartTouch) |
“humanoid” wouldn’t work because that’s a string. You want to check to see if the variable exists, not the string. So this should fix your issue.