Give me instruction or script how to do it?
Hello! So, making a kill part is very simple. Simply, create a LOCAL script inside the part. Inside the LocalScript, insert this code:
1 | local part = script.Parent --defines part |
2 |
3 | part.Touched:Connect( function (hit) --gets function |
4 | local humanoid = hit.Parent:FindFirstChildWhichIsA( "Humanoid" ) --finds humanoid |
5 |
6 | if humanoid then --checks that humanoid was found |
7 | humanoid:TakeDamage( 100 ) --kills humanoid, also killing the player |
8 | end --ends if statement |
9 | end ) --ends function |
What it does is it gets the part, detects when it gets hit, then gets the humanoid. If it finds the humanoid, it kills the humanoid, causing the player to get killed as well.
Hope this helps!
You have to insert a part with a script into the workspace, and use this to check when the something has touched the part. You can easily find one on the internet, just search around a little before going onto here.
1 | local Part = workspace [ "PARTNAMEHERE" ] |
2 |
3 | Part.Touched:Connect( function (Player) |
4 | if Player:IsA( "BasePart" ) and Player.Parent:IsA( "Model" ) and Player.Parent:FindFirstChildWhichIsA( "Humanoid" ) then |
5 | Player.Parent:BreakJoints() |
6 | end |
7 | end ) |
Simply just change "PARTNAMEHERE" in the script to the name of your part or if you put the script inside the part change
1 | local Part = workspace [ "PARTNAMEHERE" ] |
to
1 | local Part = script.Parent |
Hi! First, insert a Script
inside the part that are gonna kill the player. This is the script:
1 | local KillPart = script.Parent |
2 |
3 | KillPart.Touched:Connect( function (hit) |
4 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
5 | hit.Parent:WaitForChild( "Humanoid" ).Health = 0 |
6 | end |
7 | end ) |
It's a very simple script. It works perfectly for me. Let me know if that script also worked for you!