script.Parent.Touched:Connect(function(hit) local Nokill = {"23123","SeaRoared","Dummy"} local humanoid = hit.Parent:FindFirstChild("Humanoid") if (humanoid ~= nil) and hit.Parent.Name ~= Nokill then print(table) humanoid.Health = humanoid.Health -23 end end)