Questions on custom signals

So custom signals like GoodSignal is intended for replacing bindable events right? But it seems I can only do in-script communication but not script-script. I wonder if I’m not using it right or it’s simply not built to do so. (I guess it’s the latter) Anyway are there any modules to help achieve that?

You simply use any module script that creates a shared table.

For example you can put your signals in _G or shared since they are both shared table.

In a module script
return {
someSignal = Signal.new()
}
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.