Trying to make player die and go to a die screen to restart level

i am new to coding i am a art student atm i am trying to make hit when the player hit the light sorce that has a cone in it when he hits it he dies and goes to a die scene i have made when he gets hit everything just goes grey the script is

function OnTriggerEnter (other : Collider) {
Destroy(other.gameObject);
}

function OnCollisionEnter(collision:Collision)
{
if( collision.gameObject.tag == “Player” )
{
Destroy(collision.gameObject);

}
}

so how do i make it where i still have the charector moving around then when he hits the cone it goes to another scene ill upload the dropbox and let you play it so you understand i need to know the code

https://www.dropbox.com/s/58iuqa6cpkdim5p/Team%20neon%20Project.zip

Instead of calling Destroy() on your character, if you’re going to a death scene anyways just call Application.LoadLevel( ) with your level’s index or name as the parameter. You can add levels/scenes and check their indexes in File > Build Settings.

Thanks guys its a big help the game is mainly about the look but I am learning to do the programming side a bit to be more universal plus I love the games engine so I made it at least playable I did the load level one just alot easier thanks again