If hit find first child

Well im triying to make a npc teleport into serverstorage if he touches a wall but this doesnt work

game.Workspace.RunTO.Touched:Connect(function(hit)
	if hit:FindFirstChild("RakeHumanoid") then
		game.Workspace.Npc.Parent = game.ServerStorage
	end
end)

Maybe try hit.Parent:FindFirstChild("RakeHumanoid") instead of hit:FindFirstChild("RakeHumanoid")