We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
e4c1239
Changes Added multi-connections
local sig = PromisedSignal.new() sig:Connect(function() print("Hello from Connection 1!") end) sig:Connect(function() print("Hello from Connection 2!") end) sig:FireAsync() -- Hello From Connection 1! -- Hello From Connection 2!
2aaa16c
The first release of PromisedSignal