Why code doesn't pass to that block?

I am doing the multiplayer enter/exit in the car. And in branch code come in two directions. Is that normall? And why the code pass through Enter in the Car Client but not throughEnterInTheCarClient?

make sure to execute your code only once and see how it behaves, maybe it is getting executed multiple times?

Before the branch i have for each loop and before Event tick. Why the code pass through Enter in the Car Client but not through EnterInTheCarClient on the first picture?

Based on the text in the upper right corner “CLIENT-SIMULATING” you are watching a simulation on the client. EnterInTheCarClient event however reads “Executes on Server…” which means that it will never fire on the client.

The two lines from the branch probably fire one after the other if they are on a loop.

Oh, i see. Could you please help me with another question?

I need to the server and the client can enter in the car. When i come to the car as the client nothing happen. I know what the pressing enter is working.