Thanks alot, worked like a charm!

,
Somehow this code doesn't work
Debug.Log(TNManager.playerID);
tno.Send(10,Target.All, TNManager.playerID);
It does log the playerID, but it doesn't seem to send the message through the net
[RFC(10)]
public void sendInformationToChannel(int playerID){
Debug.Log("ading player!");
listOfPlayerInLobby.Add(TNManager.GetPlayer(playerID));
}
But it dosn't log the "adding player" part doens't log... It's the same object with a TNobject script attached to it, and there's no other RFC function in that script
Edit: I also tried to make a new script here that would kick all users from the current channel:
tno.Send(11,Target.All);
[RFC(11)]
public void kickPlayer(){
TNManager.LeaveChannel();
}
And that code doesn't work aswell... SOmething must be wrong here, no errors att all... It just wont work ^^
apparently i got this working by setting the "menu" objects id to something else than 0, why is that?