gamert7
|
  |
| Joined: 18 Nov 2008 |
| Total Posts: 4986 |
|
|
| 18 Apr 2013 11:35 PM |
if Msg:sub(1, 9) == "#loopkill" then local player = Msg:sub(11) c = game.Players:FindFirstChild(player) if c ~= nil then repeat if c:FindFirstChild("Character") ~=nil then c.Character.Health = 0 end until Msg:sub(1, 11) == "#unloopkill" end end
No output for this command. |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2013 11:37 PM |
No output usually mean, your if statement isn't true.
Double check your work. |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2013 11:37 PM |
c = game.Players:FindFirstChild(player) if c ~= nil then
Also, this need quotes
c = game.Players:FindFirstChild("player") if c ~= nil then |
|
|
| Report Abuse |
|
|
gamert7
|
  |
| Joined: 18 Nov 2008 |
| Total Posts: 4986 |
|
|
| 18 Apr 2013 11:39 PM |
Ye you are correct. That is what was wrong.... So I changed it and this works:
if Msg:sub(1, 9) == "#loopkill" then local player = Msg:sub(11) c = game.Players:FindFirstChild(player) if c ~= nil then repeat if c.Character ~= nil then c.Character.Humanoid.Health = 0 end until Msg:sub(1, 11) == "#unloopkill" end end |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2013 11:41 PM |
| Sweet! Thanks for choosing scripting helpers :3 |
|
|
| Report Abuse |
|
|