Animation editor claiming there are multiple parts with the same name

I am trying to make a custom crab like creature rig but the animation editor wont open claiming there are multiple parts with the same name, even tough there are not.
I have even ran a script to print parts with the same name:

local ptable = {}
for i_,v in pairs(workspace.Crab:GetDescendants()) do
	if v:IsA("Part") then
		table.insert(ptable,v)
		for i_,n in pairs(ptable) do
			if  v ~= n and v.Name == n then
				print(v)
			end
		end
	end
end

Crabs Heirachy:

help me‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎

Nevermind found a part with the same name and the script wasn’t working. There were 2 RightLowerFrontLegs.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.