TutorialsRoll-a-ball tutorialMoving the Player Moving the Player Checked with version: 5

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);
}
}

Im using a MacBook

You’re missing semicolons at the ends of lines 17 and 18. And you’re missing a closing paren before the semicolon on line 20.

Appriciate that much! One more question, do u know why I keep getting
‘iOS Player not found’ when I build the code in monodevelopment?

I am also getting these messages in mono after the script development and do not get what this means. Any thoughts?

:

Did you install the iOS Player when you installed Unity?