Tutorials for using UFPS with multiplayer?

Anyone have any tutorials or resources re: UFPS and Photon? I’m finding that remote players move too jittery. I know there are functions in Photon such as .isMine() I can do checks with but don’t know which ufps script to do it in.

If the player’s movement is jittery, you can simply lerp their last position and their current position by their ping (which you can get in milliseconds using photon, and then convert to seconds; decimal).

You can also just lerp with a set number such as .2 seconds. (200ms ping is slow for modern games, but just in case)