Is it Okay to use only few Remotes Event or Remotes Functions in both(server<->Client) communications?

You can write your topic however you want, but you need to answer these questions:

  1. **What do you want to achieve?
    I want to know is it okay to use only few remotes events (or functions).

  2. What is the issue? Include screenshots / videos if possible!
    When I use remotes event for server side to client side (FireClient → OnClientEvent) then can I use same remotes for opposite, client side to sever side (FireServer->OnServerEvent)?

Yes, you can learn more about the RemoteEvent class here.

Is it okay in performance side?

It wouldn’t really make a difference in performance. RemoteEvents don’t take long to load in and don’t put much stress on the server.

Yes, it should be fine performance wise as well.

1 Like

You can do this if necessary. I’m not sure in what scenario you would do this unless you want to put everything into one event. You can use a RemoteFunction for most cases, but you should send it from client to server.

1 Like

It’s perfectly fine to. As others said, it’s completely fine to do so and it will not be harsh on performance. But I would only do it when absolutely necessary.

1 Like

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