Question on Knit

I am confused about how to get the server to request something from the client using the Knit framework.

Normally I would just use a RemoteFunction, fired to the client from the server, with it returning what I need.

But how do I do this with the Knit framework?

1 Like

Could you echo signals from the server and client?

e.g: You set up signal handlers on both the client and server, the server fires the signal, client receives it, and echos it back over to the server with data.

Generally though you don’t want to use RemoteFunctions from the server to the client, so echoing in this case is better anyways.