Should be a simple fix

I have a script that is supposed to follow the player around. Though I get an error message at line 34…
HumanoidRootPart is not a valid member of Model “Workspace.ScareCrow” - Server - FollowPlayer:34

local larm = script.Parent:FindFirstChild("HumanoidRootPart")
local rarm = script.Parent:FindFirstChild("HumanoidRootPart")

local distance = 20

function findNearestTorso(pos)
	local list = game.Workspace:children()
	local torso = nil
	local dist = distance
	local temp = nil
	local human = nil
	local temp2 = nil
	for x = 1, #list do
		temp2 = list[x]
		if (temp2.className == "Model") and (temp2 ~= script.Parent) and not temp2:FindFirstChild("FollowPlayer") and game.Players:FindFirstChild(temp2.Name) then
			temp = temp2:findFirstChild("HumanoidRootPart")
			human = temp2:findFirstChild("Humanoid")
			if (temp ~= nil) and (human ~= nil) and (human.Health > 0) then
				if (temp.Position - pos).magnitude < dist then
					torso = temp
					dist = (temp.Position - pos).magnitude
				end
			end
		end
	end
	return torso
end




while true do
	wait(1)
	local target = findNearestTorso(script.Parent.HumanoidRootPart.Position)
	if target ~= nil then
		script.Parent.Humanoid:MoveTo(target.Position, target)
	end

end

Does your Scarecrow have a humanoidrootpart in the first place? What’s inside of the scarecrow model? Does this happen when the scarecrow is dead or immediately when testing?

1 Like

Man Im so dumb. I forgot to add the HumanoidRootPart.

1 Like