error CS1525: Unexpected symbol `}'

using UnityEngine;
using System.Collections;

public class player_control : MonoBehaviour
{
void fixedupdate()
{
float movehorizontal = Input.GetAxis(“horizontal”);
float movevertical = Input.GetAxis(“vertical”)

		Vector3 movement = new Vector3(movehorizontal, 0.0f, movevertical);

	rigidbody.addforce("movement")
}

}

Your code is littered with errors:

  • fixedupdate should be FixedUpdate
  • no semicolon following the movevertical assignment
  • AddForce not addforce, and give it the variable movement not the string “movement”

You might want to click the Learn tab and follow some basic tutorials.

you missed ; on the end of

rigidbody.addforce(“movement”)