Hello,
I am currently trying to equip a clone tool to a player but for some reason, the first time it is Equipped, it does not appear at the player. Instead, it appears at the last coordinates it was at before I moved it to replicated storage. Pressing the button again unequips the tool, and the third click equips it in the hand correctly.
So far I have tried:
qPerfectionWeld.
Copying another tool and swapping out the guts.
Running the game with just the tool and Handle part.
The outcome is the same. All other tools are working fine.
I encountered this issue once before, but was somehow able to fix it, however even copying code and a Handle from a working tool is not doing the business.
My google adventure on this (the past two days) yielded one single relevant result, a reddit thread with no answers.
Please help.
edit: Managed to mitigate the issue by calling Equip twice, like this:
EquipTool()
EquipTool()
But it’s less than ideal, and could cause problems down the line.