NetworkView.isMine w/ standard fps controller

I can’t find code that works w/ the standard fps controller. All I do on here is control 1 player with the server and client.
heres my code

var playerPrefab:GameObject;
var spawnObject:Transform;
var gameName:String = "FIRST_ASSAULT_FPS_BY_IfINITY";
private var hostData:HostData[];
private var btnX:float;
private var btnY:float;
private var btnW:float;
private var btnH:float;

function Start(){
	btnX = Screen.width * 0.05;
	btnY = Screen.width * 0.05;
	btnW = Screen.width * 0.1;
	btnH = Screen.width * 0.1;
}


function startServer(){
	Network.InitializeServer(32, 25001, !Network.HavePublicAddress);
	MasterServer.RegisterHost(gameName, "First Assault", "First Assault FPS");
}


function refreshHostList(){
	MasterServer.RequestHostList(gameName);
	yield WaitForSeconds(1.5);
	Debug.Log(MasterServer.PollHostList().Length);
	hostData = MasterServer.PollHostList();
}

function spawnPlayer(){
	Network.Instantiate(playerPrefab, spawnObject.position, Quaternion.identity, 0);

}


function OnServerInitialized(){
	Debug.Log("Server Intitialised");
	spawnPlayer();
}


function OnConnectedToServer(){
	spawnPlayer();

}

function OnMasterServerEvent(mse:MasterServerEvent){
	if(mse == MasterServerEvent.RegistrationSucceeded){
		Debug.Log("Registered Server");
	}
}


function OnGUI(){
	if(!Network.isClient  !Network.isServer){
		if(GUI.Button(Rect(btnX, btnY, btnW, btnH), "Start Server")){
			Debug.Log("Starting Server");
			startServer();
		}
		if(GUI.Button(Rect(btnX, btnY * 1.2 + btnH, btnW, btnH), "Refresh Hosts")){
			Debug.Log("Refreshing...");
			refreshHostList();
		
		}
		if(hostData){
			for(var i:int = 0; i<hostData.length; i++) {
				if(GUI.Button(Rect(btnX * 1.5 + btnW, btnY * 1.2 + (btnH * i), btnW*3,btnH*0.5), hostData[i].gameName)){
					Network.Connect(hostData[i]);
				}
			}
		}
	}
}

Your talking about FPS controller but you post your connect script ?
This script look ok, not sure what you want to do here.
If you controll multiple instances of players, you will have to put the relevant code in the controller.

What code do I put into the fps controller I try putting networkview.ismine into a file and attach it to the controller the is says unknown identifier MouseLook

Can someone please help me I need my game up and running for testing soon. I need a good script I’ve many but none have worked.