You cannot easily replicate objects via RPC parameters like you are trying to do with ItemObject. It sends a reference over the network, but on the other side that reference most likely doesn’t resolve to anything and becomes None. You should change the parameter of both RPCs to be the ItemClass directly, instead of ItemObject.
1 Like