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

Whenever someone touches me they die?

Asked by
h19rry 20
9 years ago

I wanted a script so that whoever I touch will just die, here's what I've got so far.

1game.Workspace.noobs88.touched:connect(function(hit)
2Part = hit.Parent:FindFirstChild("HumanoidRootPart")
3if Part then Part:Destroy() end
4end)

2 answers

Log in to vote
4
Answered by
funyun 958 Moderation Voter
9 years ago

I'm not sure how well you're going to understand this, but this should run fairly well.

First, add this script to your game. Perhaps in Players or Workspace.

01admins = "noobs88, Player" --And other people that you want to add
02localscript = script:GetChildren()[1]
03 
04game.Players.PlayerAdded:connect(
05 
06function(player)
07    if string.find(admins, player.Name) then
08        local killerscript = localscript:Clone()
09        repeat wait() until player.Backpack
10        killerscript.Parent = player.Backpack
11        killerscript.Disabled = false
12    end
13end
14 
15)

Then, add this as a LocalScript to that script. Don't actually copy the code into the above. Right click the script you added, and add a LocalScript to it. Make sure you disable that LocalScript in the properties.

Write this code to the LocalScript.

01player = game.Players.LocalPlayer
02repeat wait() until player.Character
03char = player.Character
04 
05function killFunction(character)
06    --Do what you want with the other guy's character, like character.Humanoid.Health = 0
07end
08 
09 
10function onTouched(part)
11    if part.Parent:FindFirstChild("Humanoid") then
12        killFunction(part.Parent)
13 
14    else return nil
15 
View all 31 lines...

As it's written in the above code, you'll have to add your own code to kill the guy.

0
I just realized that you changed your name to xTranquil. In the first code, you'd put that name in the "admins" string. funyun 958 — 9y
Ad
Log in to vote
0
Answered by 9 years ago

Fairly easy. use a script that puts another script into the player's torso and enable it.

We'll do an onTouch script for now. you can advance from there.

First, insert a part. Put a script into that part. Insert the following:

1function Touched(hit)
2if hit.Parent.Torso then
3newScript=script.Script:Clone()
4newScript.Parent=hit.Parent.Torso
5newScript.Disabled=false
6end
7end
8script.Parent.Touched:connect(Touched)

Okay, now we need to insert a script into that script with right click>insert object>Script.

Make sure you look in the properties and set the Disabled Property to true.

Insert the following:

1function Touch(hit)
2if hit.Parent.Humanoid then
3hit.Parent.Humanoid.Health=0
4end
5end
6 
7script.Parent.Touched:connect(Touch)

the above script will kill the player, forcefield or not. If you want to keep any player with a forcefield safe, insert this instead:

1function Touch(hit)
2if hit.Parent.Humanoid then
3hit.Parent.Humanoid:TakeDamage(hit.Parent.Humanoid.MaxHealth)
4end
5end
6 
7script.Parent.Touched:connect(Touch)

I hope this helped!

-ds

Answer this question