Question by 
               Harry792 · Mar 05, 2017 at 07:54 PM · 
                error message  
              
 
              YouTube can't help me Error
So im trying to learn Unity and C# by just doing it with this youtubes video https://www.youtube.com/watch?v=9ZEu_I-ido4&t=327s However I ran into a small problem that made my game pause ever time I hit play looking stuff online I found it was the error pasue function and truned it off and started working fine. I still have the error and simply want to know what I did wrong. Im using Unity 5.5 and this is my code. Please help me learn.
 using UnityEngine;
 
 public class NewBehaviourScript : MonoBehaviour
     {
     public Rigidbody rb;
     // Use this for initialization
     void Start ()
     {
         rb.AddForce(0, 200, 500);
     }
     
     // Update is called once per frame
     void Update ()
     {
        
     }
 }
 
              
               Comment
              
 
               
              Your answer
 
             Follow this Question
Related Questions
0xc000007b error on 64 bit machine? 1 Answer
Position is infinite 0 Answers
Unity Package Manager Error 4 Answers