How do i open a url in this main menu for facebook: Screenshot - 1cf969a4e7d9fd0c15c0c098684e0dc5 - Gyazo
how to fix it in this Game menu script
var isQuit=false;
function OnMouseEnter(){
//change text color
renderer.material.color=Color.red;
}
function OnMouseExit(){
//change text color
renderer.material.color=Color.white;
}
function OnMouseUp(){
//is this quit
if (isQuit==true) {
//quit the game
Application.Quit();
}
else {
//load level
Application.LoadLevel(1);
}
}
function Update(){
//quit game if escape key is pressed
if (Input.GetKey(KeyCode.Escape)) {
Application.Quit();
}
}