
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
강의대로 비주얼 스튜디오 파일 작성 후, 드래그 해서 르탄이에게 부여해주었는데요.
스크립트를 불러올 수 없다는 오류가 뜹니다ㅠㅠ
파일 설정이 잘못된 것인지 궁금합니다.


작성한 코드 및 에러 메세지
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NewBehaviourScript : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.position += new Vector3(0.05f, 0, 0);
}
}


