Looking at your screenshot,
isConnectedToLobby is a normal condition, which gets checked every tick.
You want OnConnectedToLobby which is a trigger condition.
When a user enters a room the user also leaves the lobby in the same time. So the condition "isConnectedToLobby" will be false directly when entering the room, which is the action for this condition.
But it is true that the event will be checked every tick until the room is entered, which will maybe take a few ticks. so best to add a "trigger once" to it indeed.