Are there any downsides of using the same remote event both ways? For example, can I use the remote that sends signals to the server to also send signals from the server to the client without encountering problems? Or is it more optimal (in terms of performance) to have separate remotes for server —> client and client —> server communication?
There are no downsides of using the same remote event, you can use the same remote event for both sides with no problem.
There is no disadvantage performance-wise. However, it can certainly make your code more confusing and harder to understand in the future.
I’d opt for distinct, clearly named events to avoid this problem.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.