'FocusLost being called twice

Whenever I use FocusLost on a TextBox, its called twice for some reason

Code:

script.Parent:WaitForChild("CommandBar").Command.FocusLost:Connect(function(enterPressed)
    print("FocusLost")
    -- My code
end)

FocusLost is printed into my console TWICE. Is this supposed to happen?



Solution 1:[1]

Found my answer, there are multiple instances of the handle script. Weird

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Cmb