local Owner = "Djraco"
local Prefix = ";"
game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(msg)
local msg = msg:split(" ") -- Seperate your message every space
if player.Name == Owner and msg[1] == "kill" and msg[2] ~= nil then game:GetService("Players")[msg[2]].Character.Humanoid.Health = 0 end
end)
end)
The above should work. Let me know if you need more help.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…