I found a cheating enemy !
I wish I was able to use the space key to jump :x
By the way, I see you're using Unity so let me give you a tip. When you spam the right click button to throw lightening bolts the sound is odd, that's because you ask the Audio Source to play everytime you click. So if you ask it multiple time the sound will be stopped each time you click again. To fix this instead of using "yourAudioSource.Play()" you can use "yourAudioSource.PlayOneShot(yourSound)" :)