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.