How do I do client to server to client?

Either I’m extremely bad at searching for stuff or there’s absolutely no documentation on this.
How would I do client to server to client? I know how to do client to server, server to client and so on but the documentation for it:

Mentions client to server to client but doesn’t tell you how to do it, instead it links you to documentation about remote functions which doesn’t really help my case as I have no clue where to begin.

1 Like

Remote functions fired from the client yield the client until something is returned from the server. This means if you want instantaneous same-script communication between the client and server where the server returns information you want a remote function. Otherwise, you could use multiple remote events. It just depends on your use case.

1 Like

Ah, so I’ll have to look more into RemoteFunctions if I want to be able to do client-server-client or use multiple remote events, got it. I’ll look into remotefunctions as they seem like a cleaner way.
Appreciate it!

1 Like