diff --git a/kill b/kill new file mode 100644 index 0000000..73fa120 --- /dev/null +++ b/kill @@ -0,0 +1,5 @@ +script.Parent.Touched:connect(function(hit) + if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then + hit.Parent.Humanoid.Health = 0 + end +end)