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

How Can I Share Events Between Two Scripts?

Asked by 9 years ago

How Can I Share Events Between Two Scripts?

0
Can you elaborate a bit on this? What are you trying to do? The best suggestion I've got for you is use a module script. M39a9am3R 3210 — 9y

1 answer

Log in to vote
0
Answered by
wazap 100
9 years ago

Make a BindableEvent

Event.Event:connect(function(parameters)
--code
end)

And then from seperate scripts you can do

Workspace.BindableEvent:Fire()
Ad

Answer this question