CS0103 error The name "CharacterMotor" does not exist it the current context

using UnityEngine;
using System.Collections;

public class moveAnimation : MonoBehaviour {

    public float BaseAnimatedSpeed = 0.5f;
    public float AnimationSpeedModifier = 0.25f;
//error occurs in this line in CharacterMoter


 public CharacterMotor motor;
    Animation animations;

	void Start () {

        animations = GetComponent<Animation>();
	}
	
	void Update () {

        animations[animations.clip.name].speed = motor.movement.velocity.magnitude * AnimationSpeedModifier + BaseAnimatedSpeed;
	}
}

You don’t have the CharacterMotor in your project. Unity does not include it in the base setup. You get it by:

Assets > Import Package > Character Controller