Text = "Test" script.Parent.Touched:connect(function(Player) Player.FindFirstChild("Humanoid") Humanoid.Health = 0 print(Text)
Okay, when you fire a Touched
function in a part, it finds the PART, not MODEL PARENT.
Text = "Test" script.Parent.Touched:connect(function(Player) hum= Player.Parent:FindFirstChild("Humanoid") hum.Health = 0 print(Text) end)