Client-Server-Client Communications?

I want to make a system where the Client sends a request to the Server to do an action, the Server process it and sends results back to the Client who sent it. I just need to know how send data from Client to Server, I can figure out the rest from there.
(Am I posting too much?)

1 Like

You are going to want to use something like a RemoteFunction to accomplish this goal. You can :InvokeServer() on the RemoteFunction from a client script and then handle the request from the server. I recommend looking into the developer docs for this, because it contains everything you need to know.