每当我在TextBox上使用FocusLost时,由于某种原因它会被调用两次
代码:
script.Parent:WaitForChild("CommandBar").Command.FocusLost:Connect(function(enterPressed)
print("FocusLost")
-- My code
end)
FocusLost被打印到我的控制台两次。这是应该发生的吗?
找到我的答案,有多个句柄脚本实例。奇怪的