Answered by
5 years ago Edited 5 years ago
You could use a BindableEvent, which has the ability for scripts to talk to one another upon event. Here's an example.
1 | local Bindable = Location_Of_Bindable.BindableEvent; |
5 | Bindable:Fire( "Hello World!" ) |
And, within a second script.
1 | local Bindable = Location_Of_Bindable.BindableEvent; |
3 | Bindable.Event:Connect( function (Str) |
4 | print ( "Message sent:" , Str); |
The second code should print Message sent: Hello World!
Stuff talked about
1. BindableEvent
Stuff related, but not talked about
2. BindableFunction
- Basically uses a function for when called upon. Think of these as remote, but for their respective sides. (Server-To-Server, LocalScript-To-LocalScript (same client only though))
Apologies if this wasn't "high quality", I haven't post an answer in months. Regardless, I hope this helped. :)
If you have any questions, please don't hesitate to ask. :D