I get CS8025 Parsing Error at 19,9 . Please Help !!!
using UnityEngine;
using System.Collections;
public class Movement : MonoBehaviour {
public float PlayerSpeed = 5.00f ;
private float forimp = 0.00f ;
// Use this for initialization
void Start () {
forimp = Input.GetAxis("Vertical") * PlayerSpeed ;
}
// Update is called once per frame
void Update () {
transform.Translate(0, 0, forimp);
}