Reproduction Steps
Copy the following source into a script:
--!strict
local event: BindableEvent = Instance.new("BindableEvent");
local signal: RBXScriptSignal = event.Event;
Type signal:
, and look at the intellisense. It shows Connect and ConnectParallel, but not Wait.
Curiously, if you type signal.
, it shows Wait (and it hints that it takes a self parameter).
Expected Behavior
I’d expect to see Wait, Connect, and ConnectParallel all as suggestions.
Actual Behavior
Connect and ConnectParallel are suggestions.
Wait can be found if you type “signal.”
Issue Area: Studio
Issue Type: Other
Impact: Low
Frequency: Constantly