GamestrG
|
  |
| Joined: 12 Mar 2014 |
| Total Posts: 45 |
|
|
| 11 Mar 2017 06:13 AM |
| I want to make a part kill other players while they touch it and the one holding it doesn't die |
|
|
| Report Abuse |
|
|
|
| 11 Mar 2017 06:44 AM |
script.Parent.Touched:connect(function(hit) if hit.Parent.Humanoid then for i,v in pairs(game.Players:GetPlayers()) do v.Character:BreakJoints() end end end) |
|
|
| Report Abuse |
|
|
|
| 11 Mar 2017 06:48 AM |
script.Parent.Touched:connect(function(hit) local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player then for _,players in pairs(game.Players:GetPlayers()) do if players.Name ~= player.Name then players.Character:BreakJoints() end end end end) |
|
|
| Report Abuse |
|
|