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

Why does error come eventhough script itself works fine?

Asked by
Yuuwa0519 197
6 years ago
Edited 6 years ago

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?

01local trapPart = script.Parent
02 
03local function onPartTouch(otherPart)
04 
05local partParent = otherPart.Parent
06 
07local humanoid = partParent:FindFirstChildWhichIsA("Humanoid")
08 
09if ( "humanoid" ) then
10 
11-- Set player's health to 0
12 
13humanoid.Health = 0
14 
15end
16 
17end
18 
19trapPart.Touched:Connect(onPartTouch)

3 answers

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

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()

1local trapPart = script.Parent
2local 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
8end
9trapPart.Touched:Connect(onPartTouch)

With :FindFirstChildWhichIsA()

1local trapPArt = script.Parent
2local 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
8end

Accept my answer if it works for you!

Ad
Log in to vote
0
Answered by 6 years ago

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:

1local Trap = script.Parent
2 
3Trap.Touched:Connect(function(instance)
4    local Humanoid = instance.Parent:FindFirstChildWhichIsA("Humanoid")
5     
6    if Humanoid then
7        Humanoid["Health"] = 0
8    end
9end)
0
oh so i dont make the the if part to string, but just directly put in as variable? Yuuwa0519 197 — 6y
0
yes imagYTOP 19 — 6y
Log in to vote
-1
Answered by 6 years ago

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 
09partParent: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.

Answer this question