How to Fix 'GUITexture' is obsolete: 'GUITexture has been removed. Use UI.Image instead.' - Unity Error
This error can be fixed by changing 'GUITexture' to 'Image'. Don't forget to import UnityEngine.UI too. code before : using UnityEngine.EventSystems; namespace UnityStandardAssets.CrossPlatformInput { [RequireComponent(typeof(GUITexture))] code after : using UnityEngine.EventSystems; using UnityEngine.UI; namespace UnityStandardAssets.CrossPlatformInput { [RequireComponent(typeof(Image))]