health -> Health
H 대문자로
part.Parent:FindFirstchild(humanoid)
->
part.Parent:FindFirstChild("Humanoid")
"" 추가하고 C 대문자 , H 대문자로 바꿔주세요
그리고
local humanoid = part.Parent:FindFirstChild("Humanoid")
if humanoid then
humanoid.Health = 0
end
humanoid -> Humanoid
h 전부 H로 바꿔주세요
->
local Humanoid = part.Parent:FindFirstChild("Humanoid")
if Humanoid then
Humanoid.Health = 0
end