Value Replicated to Server in Editor but not in Standalone

Hello!
Thank you for your time to look this over and answer if possible.
I have a current movement BP that adds local rotation to a mesh based off of where the mouse is located on the screen. I need this to happen server side, so the rotation is sent through a Run On Server RPC. The server receives the rotation fine when played in editor, with dedicated server checked, but does not receive the value when run in standalone or packaged game. Also upon further testing I have found (using print string) that the “Get Mouse Position on Platform” returns a correct value on Client but returns 0 on Server when run on Standalone. How do I get the Mouse position to be recognized on the server?
Thanks Again

can u show us the full send blueprint of this case?

did you replicate the variable and the movement of the pawn? it should update the transform of your pawn then.

if this wont work how does your bp looks like?

261528-sasdasdasdasd.png

maybe you should consider reading about Exi’s network compendium , it gives good information about all this stuff

Figured it out! Simple Replicating Movement! I can’t believe I missed that and wasted all this time! I appreciate you.