So I Have A KillBrick Script When It Is Touched The Player Dies. What Is My Error If There Is? Sorry For The Title. The Title Filter Is Kinda Bad.
1 | Script.Parent.Touched:Connect(Function(Hit) |
2 | If (Hit ~ = Nil) Then |
3 | If (Hit.Parent) Then |
4 | If (Hit.Parent:FindFirstChild( "Humanoid" )) ~ = Nil Then |
5 | Hit.Parent:FindFirstChild( "Humanoid" ).Health = ( 0 ) |
6 | End |
7 | End |
8 | End |
9 | End) |
was
There are several problems with capitalisation in your code. Case-sensitivity must always be taken into account or your code will have problems.
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit then |
3 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
4 | hit.Parent.Humanoid.Health = 0 |
5 | end |
6 | end |
7 | end ) |
I've tidied up your code a bit, but if you wanted to go slightly further you could do:
1 | script.Parent.Touched:Connect( function (hit) |
2 | local hum = hit.Parent:FindFirstChild( "Humanoid" ) |
3 | if hum then |
4 | hum.Health = 0 |
5 | end |
6 | end ) |
1 | script.Parent.Touched:connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | hit.Parent.Humanoid.Health = 0 |
4 | end |
5 | end ) |