For a really long time I thought that good signal was an alternative to RemoteEvents and thought it was a lot more optimized. I recently discovered that it was in-script only.
But it had be wondering—Are there any modules that do what I just described? I have done a bit of research and haven’t had a clear answer.
Would really appreciate help
ps, hope this is the right place to put this and not development discussion, pls lmk asap if not!
the defined packets module by suphi is a really good one! I’ve been a fan of his for a while and came across his video when it came out and have been using the module since. Works really well as you can use buffers to optimize your memory instead, and theres script type checking built in! the devforum for his module can be found here Packet - Networking library - #90 by 5uphi
GoodSignal is a replacement for bindable events, not remote events. Other than that, I also recommend packet or some kind of compression module to reduce sent/recv data. Also you can use a batching system that sends data in batches instead of events one by one (I think this is actually built into packet). Also implement sanity checks into your client → server remote events, as it can prevent exploiters from spamming remotes, sending malformed data, and overloading the server by sending large data.