Hover Script

Hey guys, i saw a tutorial on youtube, that helps making a 3d menu. The guy used a script called hover script, but when i download it an error message displays that the host is unidentified, can anyone help?

this is the link for the script
http://www.mediafire.com/?dbdijpj5dhvn3wi

This is not really a problem you’re having with Unity. And a link to the tutorial would help understand exactly what the problem is. Anyway, I had no problem downloading the script in your link, here it is :

var levelToLoad : String;
var soundhover : AudioClip;
var beep : AudioClip;
var QuitButton : boolean = false;

function OnMouseEnter(){
	audio.PlayOneShot(soundhover);
}

function OnMouseUp(){
	audio.PlayOneShot(beep);
	yield new WaitForSeconds(0.35);
	if(QuitButton){
		Application.Quit();
	}
	else{
		Application.LoadLevel(levelToLoad);
	}
}

@script RequireComponent(AudioSource)

Here I edited that code to c sharp and its working in unity 5 too

using UnityEngine;
using System.Collections;

public class Hover : MonoBehaviour {

    public string levelToLoad;
    public AudioClip soundhover;
    public AudioClip beep;
    public bool quitButton = false;
    private AudioSource audio;

    void Start()
    {
          audio = gameObject.AddComponent<AudioSource>();
        
    }
    void OnMouseEnter()
    {
    
            audio.PlayOneShot(soundhover);
    }

    void OnMouseUp()
    {
        AudioSource audio = gameObject.AddComponent<AudioSource>();
        
        audio.PlayOneShot(beep);

        Invoke("loadLevel", 2);
    } 
    private void loadLevel()
    {
        if (quitButton)
        {
            Application.Quit();
        }
        else
        {
            Application.LoadLevel(levelToLoad);
        }
    }
}