RPC in tick always send the same value

Hello, I’m stuck with rpc calls, I have this function called in tick from a client.
But in my logs, all calls seem send the first int… any idea?

RPC’s on tick are a bad idea. You will exhaust your network bandwidth dropping packets in the process. (that’s probably why only the first rpc of the tick goes through)

If you are going to send something to the server then at least try to aggregate the data and then unpack it on the server side.

Does your client have authority to execute the server side commands? Is his controller the owner on the server side?