Tool.Activated not working?

So I have a tool, which I put in to all characters. My characters are custom models, and they only have a head and torso. The tool, which has an on activated script, doesn’t trigger at all. I turned off requires handle and I tried putting the activated into an equipped function, which doesn’t work either. I am not sure why this is happening, and any help is appreciated. I am getting no errors.

2 Likes

Try having a handle in the tool, if that doesn’t work try doing :

local tool = script.Parent
local mouse = game.Players.LocalPlayer:GetMouse()

tool.Equipped:Connect(function()
      mouse.Button1Down:Connect(function()

     -- Code here
      end)
end)