1) function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") if h~=nil then h.Health = 0 end end script.Parent.Touched:connect(onTouched)
2) function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") end end script.Parent.Touched:connect(onTouched)
3) function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") if h~=nil then h.Health = 0 end
This one is more simple, since i assume you are a beginner!
1 | local Part = script.Parent -- Here we are creating a variable, so we can acess the part easier than needing to type script.Parent everytime we need to adjust the part |
2 |
3 | Part.Touched:Connect( function (hit) -- So here is a new thing for you. Events basically fire something when you do something! |
4 | if hit.Parent:FindFirstChild( "Humanoid" ) then -- Hit is the part that you touch the brick with. And if it contains a humanoid we want to fire something. |
5 | hit.Parent.Humanoid.Health = 0 -- We are saying the health of the humanoid equals to 0. Remember to have to equal signs if it is in a if statement. |
6 | end |
7 | end ) -- Self-Explanatory. |
Good luck on your scripting progress
This is the working one, the first one
1 | function onTouched(part) -- a function for when a part is touched |
2 | local h = part.Parent:findFirstChild( "Humanoid" ) -- find a humanoid inside the toucher |
3 | if h~ = nil then -- if the humanoid is not nil then |
4 | h.Health = 0 -- make the humanoids health 0 |
5 | end |
6 | end |
7 | script.Parent.Touched:connect(onTouched) -- connecting it to the function |
This is one way to do it.
01 | script.Parent.Touched:Connect( function (hit) |
02 | -- if the script.Parent is touched, the function activates |
03 | if game.Players:GetPlayerFromCharacter(hit.Parent) then |
04 | -- this makes so it has to be a player, no NPCs |
05 | local hum = hit.Parent:FindFirstChild( "Humanoid" ) |
06 | if hum then |
07 | -- checks to see if it has a humanoid |
08 | hit.Parent:BreakJoints() |
09 | -- breaks the joints in the character, killing it |
10 | end |
11 | end |
12 | end |