Unity Multiplayer Tutorial problem

I am working on Unity’s Multiplayer tutorial. It’s kind of old but still a good exercise. The tutorial works as described, however, in the client end the bullet appears but moves really really slow. In the host end, the bullets shoot fine. Is there something I don’t know? The Network send rate is 3.

here’s the code on the player:

//		
using UnityEngine;
using UnityEngine.Networking;

public class PlayerController : NetworkBehaviour
{
	public GameObject bulletPrefab;
	public Transform bulletSpawn;

	void Start(){
		SmoothCameraFollow.target = this.transform;
	}


	void Update()
	{
		if (!isLocalPlayer)
		{
			return;
		}

		var x = Input.GetAxis("Horizontal") * Time.deltaTime * 250.0f;
		var z = Input.GetAxis("Vertical") * Time.deltaTime * 9.0f;

		transform.Rotate(0, x, 0);
		transform.Translate(0, 0, z);

		if (Input.GetKeyDown(KeyCode.Space))
		{
			CmdFire();
		}
	}

	// This [Command] code is called on the Client …
	// … but it is run on the Server!
	[Command]
	void CmdFire()
	{
		// Create the Bullet from the Bullet Prefab
		var bullet = (GameObject)Instantiate(
			bulletPrefab,
			bulletSpawn.position,
			bulletSpawn.rotation);

		// Add velocity to the bullet
		bullet.GetComponent<Rigidbody> ().AddForce (transform.forward * 500);

		// Spawn the bullet on the Clients
		NetworkServer.Spawn(bullet);

		// Destroy the bullet after 2 seconds
		Destroy(bullet, 20.0f);
	}

	public override void OnStartLocalPlayer ()
	{
		GetComponent<MeshRenderer>().material.color = Color.blue;
	}
}

Check your bullet prefab if it has the network identity and network transform component. Make sure the bullet prefab network transform shows that network transform sync mode is set to sync transform, interpolate rotation to 15.

This helped, thank you!