PHOTON weapon pickup only showing up in one game

I am making a small 2D online shooter with gun pickups.
But when a player picks up a gun it is only visible on his screen I have a photon view component on the gun and the transform is set in the observe. any help would be greatly appreciated.

You should have a look at the demo “Pickup, Teams, Scores” in the PUN package.
It probably does what you try to achieve.
When a item is picked up, it should not send it’s own positioning anymore. It belongs to some character (which you sync already) and if it’s visible at all, you can show it positioned on the character.

THANK YOU SOOOO MUCH!