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

How to make a player killing part?

Asked by 3 years ago

Give me instruction or script how to do it?

0
pretty sure the toolbox has like 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 models of these lmao. in fact theres one i made in my inventory if you wanna check that out, it expands too greatneil80 2647 — 3y

4 answers

Log in to vote
1
Answered by 3 years ago
Edited 3 years ago

Hello! So, making a kill part is very simple. Simply, create a LOCAL script inside the part. Inside the LocalScript, insert this code:

1local part = script.Parent --defines part
2 
3part.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
9end) --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!

Ad
Log in to vote
0
Answered by 3 years ago

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.

Log in to vote
0
Answered by
danklua 72
3 years ago
Edited 3 years ago
1local Part=workspace["PARTNAMEHERE"]
2 
3Part.Touched:Connect(function(Player)
4if Player:IsA("BasePart") and Player.Parent:IsA("Model") and Player.Parent:FindFirstChildWhichIsA("Humanoid") then
5Player.Parent:BreakJoints()
6end
7end)

Simply just change "PARTNAMEHERE" in the script to the name of your part or if you put the script inside the part change

1local Part=workspace["PARTNAMEHERE"]

to

1local Part=script.Parent
0
This is an out-dated way. NickyPlayz2011 82 — 3y
Log in to vote
0
Answered by 3 years ago

Hi! First, insert a Script inside the part that are gonna kill the player. This is the script:

1local KillPart = script.Parent
2 
3KillPart.Touched:Connect(function(hit)
4    if hit.Parent:FindFirstChild("Humanoid") then
5        hit.Parent:WaitForChild("Humanoid").Health = 0
6    end
7end)

It's a very simple script. It works perfectly for me. Let me know if that script also worked for you!

Answer this question