I wanted a script so that whoever I touch will just die, here's what I've got so far.
1 | game.Workspace.noobs 88. touched:connect( function (hit) |
2 | Part = hit.Parent:FindFirstChild( "HumanoidRootPart" ) |
3 | if Part then Part:Destroy() end |
4 | end ) |
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.
01 | admins = "noobs88, Player" --And other people that you want to add |
02 | localscript = script:GetChildren() [ 1 ] |
03 |
04 | game.Players.PlayerAdded:connect( |
05 |
06 | function (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 |
13 | end |
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.
01 | player = game.Players.LocalPlayer |
02 | repeat wait() until player.Character |
03 | char = player.Character |
04 |
05 | function killFunction(character) |
06 | --Do what you want with the other guy's character, like character.Humanoid.Health = 0 |
07 | end |
08 |
09 |
10 | function onTouched(part) |
11 | if part.Parent:FindFirstChild( "Humanoid" ) then |
12 | killFunction(part.Parent) |
13 |
14 | else return nil |
15 |
As it's written in the above code, you'll have to add your own code to kill the guy.
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:
1 | function Touched(hit) |
2 | if hit.Parent.Torso then |
3 | newScript = script.Script:Clone() |
4 | newScript.Parent = hit.Parent.Torso |
5 | newScript.Disabled = false |
6 | end |
7 | end |
8 | script.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:
1 | function Touch(hit) |
2 | if hit.Parent.Humanoid then |
3 | hit.Parent.Humanoid.Health = 0 |
4 | end |
5 | end |
6 |
7 | script.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:
1 | function Touch(hit) |
2 | if hit.Parent.Humanoid then |
3 | hit.Parent.Humanoid:TakeDamage(hit.Parent.Humanoid.MaxHealth) |
4 | end |
5 | end |
6 |
7 | script.Parent.Touched:connect(Touch) |
I hope this helped!
-ds