Help, i can't build my game..!

Hi, i have a problem i was about to build my game finally but then a problem appears to me saying "play is not a member of UnityEngine.Texture’.

And also "isplaying is not a member of UnityEngine.Texture’.

And here is my script i named it DoorPlay to play a short cutscene and when it ends to takes me to another level…

18721-script.png

How do i fix this problem i can’t build my game now !! … Help please :frowning: !

Try changing your script to work like this and see if it fixes it.

	var movTexture : MovieTexture;
	function Start () {
		renderer.material.mainTexture = movTexture;
		movTexture.Play();
	}