My play button in scene changes the current menu scene to the actual level scene.
I added the listener method in the form of a delegate:
playLevel.onClick.AddListener(delegate { LoadLevel();})
Most of the times it works perfectly fine, but sometimes when I click the button the game lags for a second and the button can be clicked again therefore opening the Level scene twice.
Does anyone have any idea on how to prevent this from happening? Thanks