Let's say I wanna delete a tool when I unequip my tool.
1 | tool = script.Parent |
2 | tool.Unequipped:Connect( function () |
3 | tool:Destroy() |
4 | end ) |
See that would work in most cases because is my other game it works but in my new game it doesn't. In output an orange/yellow message appears:
** Something unexpectedly tried to set the parent of Tool to NULL while trying to set the parent of Tool. Current parent is Backpack. **
I've also tried more options like deleting it from Backpack via :FindFirstChild but that sends the same message too.
Please help me.