Trying to communicate between server scripts

Let me make this quick, I wanna let two scripts communicate with eachother. I already have an idea of how I could accomplish this, but it seems quite inefficient. This method involves the script calling a client event, and then the client event calling the server event. I wanna know of any other possible methods I could use. Thanks for reading.

Bindable events and functions

3 Likes

You use a RemoteFunction for this, as it is a two way connection unlike a RemoteEvent which is a one way connection.

However @DataSigh 's answer is more practical.

2 Likes

You can use Module Scripts, that’s way more better than the method you are using. As @DataSing said, Bindable Events are also a good alternative. Rest is up to you :slight_smile:

2 Likes

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