What do you want to achieve?
I would like to make a script following this logic:
(spaceship fighting game btw)
player moves mouse
turrets on ship tween to look towards mouse position (seen by all players)
What is the issue?
If I fire an event every single time a player moves their mouse to replicate the tween, that seems pretty costly for the server. Are there any alternatives you guys can think of?
What solutions have you tried so far?
None, just planning out the game before I make it.
Use an unreliable remote event, those do not guarantee delivery, or delivery in-order. The cost of these is lower and you can easily send one every frame. On the receiving side you can just take the ones that are in-order and discard the ones that aren’t.
player moves mouse so the turrets on their ship moves torwards that location via tween
for everyone else to see that I need to fire a remote event that then fires to all clients to replicate that tween