I am new to programming and I am getting this error when I try to enter Playmode, can a kind soul please tell me what I am doing wrong/how to fix it? thanks in advance!
using UnityEngine;
using System.Collections;
public class PlayerController : MonoBehaviour
{
void FixedUpdate ()
{
float moveHorizontal = Input.GetAxis("Horizontal");
float moveVertical = Input.GetAxis("Vertical");
Vector3 movement = new Vector3(moveHorizontal, 0.0f, moveVertical);
rigidbody.AddForce(Vector3);
}
}