How to create weapon recoil in a dedicated server multiplayer game?

How? Add pitch input doesnt work on dedicated servers for some reason…

You must implement weapon recoil in client side. There’s no need to add it to server side.

Also be careful about the Player Controller ID

Actually you do. Otherwise player can cheat by canceling that recoil.

Well the player can cheat using a mouse macro no matter if it’s client or server. If you wanted to do some calculation on the server that adds randomness to the recoil then it would be harder to macro, but this will also add latency to the recoil which is almost always undesirable. I don’t think the client-server model is the place to catch recoil cheaters, but if anyone has a better solution I’d love to know…