armor = game.ServerStorage.Armor chest = armor.Chest legs = armor.Legs lElbow = chest.LeftElbow rElbow = chest.RightElbow lShoulder = chest.LeftShoulder rShoulder = chest.RightShoulder uTorso = chest.UpperTorso lTorso = chest.LowerTorso function onEquip() armor:Clone().Parent = script.Parent.Parent end script.Parent.Equipped:connect(onEquip)
I don't understand what's wrong.
Finally figured out the issue. I was trying to make a Tool act as if it were a HopperBin and that did not work at all. Simply added a Handle and everything ran perfectly.