Hey,
Can someone help me with the script and tell me where my errors are coming from. It says error, but I don’t know whit it is.
If someone can help, that’ll be dope.
THANK YOU!
using UnityEngine;
using System.Collections;
public class PlayerBevavior : MonoBehaviour {
public float speed;
private Rigidbody rb;
void Start()
{
rb = GetComponent();
}
void FixedUpdate ()
{
float moveHorizontal = Input.GetAxis (“Horizontal”)
float moveVertical = Input.GetAxis (“Vertical”)
Vector3 movement = new Vector3 (moveHorizontal, 0.0f, moveVertical;
rb.AddForce (movement * speed);
}
}