Transform doesn't update for other players

Hello, I’m new to Networking, and this is actually my first time do Networking. I did follow the Documentation and the examples provided, but, I have a problem.

I have created a mini-game like “Agar” where you have to collect little green points in order to grow.
The problem is that, only the server see the changes (when a player eat, it grows).
The player see himself growing and the server see everyone growing (if they eat) but other players cannot see other players when they grow. But they can feel their collider. Weird.

I need a little help, to solve this issue, to recap, the players see each other positions, but they don’t see the scale of others.

Here is how the Player prefab looks like:

Here is the Multiplayer Object:

And here are the Scripts:
Multiplayer:

public class Multiplayer : MonoBehaviour
{

    // Start is called before the first frame update
    public GameObject food;
    void Start()
    {
        food.SetActive(false);
    }

    // Update is called once per frame
    void Update()
    {
      //
    }

    public void Host()
    {

        NetworkManager.Singleton.StartHost();
        HideHud();
    }
 
    public void Connect()
    {


        UNetTransport uNetTransport = this.GetComponent<UNetTransport>();
        uNetTransport.ConnectAddress = GameObject.Find("IpInputText").GetComponent<Text>().text;
        NetworkManager.Singleton.StartClient();
        HideHud();
    }

    private void HideHud()
    {

        if (NetworkManager.Singleton.IsServer)
        {
            food.SetActive(true);
            NetworkObject[] littleFood = food.GetComponentsInChildren<NetworkObject>();
            for (int i = 0; i < littleFood.Length; i++)
            {
                littleFood[i].Spawn();
            }
        }

        GameObject canvas = GameObject.Find("Canvas");
        canvas.SetActive(false);
    }

Player Script:

void Update()
    {
        float x = Input.GetAxis("Horizontal") * 0.01f;
        float y = Input.GetAxis("Vertical") * 0.01f;
        if (x != 0 || y != 0)
        {
            transform.position += new Vector3(x, y, 0);
        }

        //transform.position = Position.Value;
        //transform.localScale = transform.localScale;

    }
    private void OnTriggerEnter2D(Collider2D other)
    {
        if (other.gameObject.name.Contains("Food"))
        {
            //Destroy(other.gameObject);
            NetworkManager.Destroy(other.gameObject);


           transform.localScale += new Vector3(0.2f, 0.2f,0.2f);

            //NetworkObject.transform.localScale = transform.localScale;
          //Nothing changes

        }
    }

Hello, I’ve played more with [ServerRpc] and [ClientRpc] and solved the problem. Thanks you.

@CommanderPaladin Would you mind sharing what your solution was? I found myself in this situation and so far I’ve only partially found a solution…