#Equipped not firing

1 messages · Page 1 of 1 (latest)

languid zodiac
#
player.Backpack.ChildAdded:Connect(function(child: Tool)
        if child.Name == "Handcuffs" then
            
            print(1)
            child.Equipped:Connect(function(mouse)
                print(2)
            end)
        end
    end)```it prints 1 but not 2
deep void
#

I assume you do actually equip the tool in your hand?

languid zodiac
#

Yes

deep void
#

And u are sure "child" is the Tool instance when it gets equipped right?

languid zodiac
#

Yup

deep void
#

Is this script local or server

languid zodiac
#

Server

#

But I fixed it

deep void
#

Oh cool

#

whatd u do

languid zodiac
#

The tool had no handle, and RequiresHandle is on by default, which I didn't even know was a property