I don’t know why but when I touch the killbrick it doesn’t kill me
type or paste code here
```script.Parent.Touched:Connect(function(hit) -- this script will run if the player touches the KillBrick
if hit.Parent:FindFirstChild("Humaniod") then -- finds a humaniod
hit.Parent.Humaniod.Health = 0 -- sets player health to 0
end
end)