of     1   

Inspectial
#141749629Sunday, July 27, 2014 7:09 PM GMT

honestly, no idea how to use string.sub game.Players.PlayerAdded:connect(function(player) if player.Name == "Inspectial" then player.Chatted:connect(function(cmd) if string.sub(1, 5) == "kill " then for i,v in pairs(game.Players:GetChildren()) do if v.Name == string.sub(1, 6) then v.Character.Humanoid.Health = 0 end end end end) end end)
AnonyAnonymous
#141751416Sunday, July 27, 2014 7:29 PM GMT

game.Players.PlayerAdded:connect(function(player) if player.Name == "Inspectial" then player.Chatted:connect(function(cmd) if string.sub(cmd,1,5) == "kill" then for i,v in pairs(game.Players:GetChildren()) do if v.Name == string.sub(cmd,6) then v.Character.Humanoid.Health = 0 end end end end) end end)

    of     1