Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do I turn off an event listener?

Asked by 6 years ago

The question is basically my problem. I am wondering how I can turn off an event listener but without using a debounce. Can someone help me out here? I just need a link or suggestion on how to do this I don't need you to write me a script. Any help would appreciated. Thanks!

3 answers

Log in to vote
3
Answered by 6 years ago
Edited 6 years ago

Connect returns a signal connection object that allows you to disconnect the listener from the event. You can do this by calling Disconnect on the object

Example

1local connection = object.Event:Connect(f)
2connection:Disconnect()

Some people create their own APIs for binding events to manage Disconnect better, or just because they don't like using ROBLOX's API. There's no method in the ROBLOX API for disconnecting all listeners from an event, so often you'll see people do something like this...

01local EventSignal = {}
02 
03local function connectSignal(self, func)
04    local connections = self.connections
05    local signal = self.bindable.Event:Connect(func)
06    connections[#connections + 1] = signal -- add signal to connections
07    return -- return some disconnector
08end
09 
10local function disconnectAll(self)
11    local connections = self.connections
12    for i = 1, #connections do
13        connections[i]:Disconnect() -- disconnect roblox event signal
14        connections[i] = nil
15    end
View all 28 lines...

It's not perfect but that's just meant to show you how it can make life while programming a little bit easier if you're managing a lot of events.

0
Thank you! User#21908 42 — 6y
Ad
Log in to vote
1
Answered by
Amiaa16 3227 Moderation Voter Community Moderator
6 years ago

Declare the event connection as a variable. Then you can use Disconnect() on it.

Example:

1local ev
2ev = part.Touched:Connect(function(hit)
3    --stuff
4    ev:Disconnect()
5end)

Or if you want to use an event only once, you can use event:Wait(), like this:

1local hit = part.Touched:Wait()
2--stuff
Log in to vote
0
Answered by 6 years ago

You can "disconnect" your Event in various ways.

  1. http://wiki.roblox.com/index.php?title=Destroy_(Method) You can destroy the Event to disconnect it fully, even though you won't be able to use it back again. (Even though you can add a new instance with the same properties as the old Event.

  2. Using :Disconnect() in the event. Here's an example:

1-- "PartTouched" is now a identifier for what ":Connect()" returns, which is the event signal for this event.
2 
3local PartTouched = Part.Touched:Connect(function()
4    print("Part touched")
5end)
6 
7-- You can use the :Disconnect() method in the event you made a variable with.
8PartTouched:disconnect()
1
You cannot "destroy the event". RBXScriptConnection can't be used with Destroy(). I think you meant destroying an object disconnects all of its events. But that's still a bad way to disconnect events, since that's what Disconnect() is for. Also, you wrote "disconnect()" instead of "Disconnect()" on the last line ;p Amiaa16 3227 — 6y

Answer this question