im just wondering, and a bit confused.
Here Is A Script I Just Made And Tested:
local KillPart = game.Workspace.Brick -- The Kill Brick KillPart.Touched:Connect(function(Touched) local FindHumanoid = Touched.Parent:FindFirstChild('Humanoid') -- // Finding The Humanoid if FindHumanoid then -- If The Humanoid Is Found Then The Player Will Die FindHumanoid.Health = 0 end end)