Tool.Equipped is not working

Can someone explain to me what’s going on? I made a code for when the tool is equipped, print ok, but it is not working.

The code is in a local script:

print('A')

script.Parent.Equipped:Connect(function()
	print('equipped')
end)

I put “print (‘A’)” to see if the local script was running.

image

2 Likes

You don’t seem to have anything in your tool for it to equip, create a random part called Handle and put it in the tool, or just turn off RequiresHandle and it should do the trick (I think?)

10 Likes

Or there’s a setting where you can just set RequiresHandle to off. (within tool)

2 Likes