What is the behavior of RemoteEvents that are not handled?

Let’s say that I have a remote event created on the server and replicated to all clients. Then, only 2 out of 5 clients on a server connect to the event. If I run “event:FireAllClients(…)”, the 2 clients that have called “event.OnClientEvent:Connect(fn)” will receive and process the event, and the 3 that have not connected to the event will not process it.

However, if the remaining 3 clients connect to that event at a later time, will they process queued requests from past “FireAllClients” calls, or only future requests?

Thanks

Only future requests.
What’s your use case?