From 58698d213ffd7a592eb3fb603a681885c6427560 Mon Sep 17 00:00:00 2001 From: Kasper Hjorth Hansen Date: Tue, 10 Mar 2020 16:56:38 +0100 Subject: [PATCH] Create kill --- kill | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 kill 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)