Hello so today I scripted a little script with checks if the Player types a word in the chat the Problem is when i type something similar to this word then it will do that that happens if I type the normal word!
game.Players.PlayerAdded:Connect(function(Player)
Player.Chatted:Connect(function(message)
if message:match("die") then
Player.Character.Humanoid.Health = 0
end
end)
end)