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: