help me theirs no GRAVITY!

I would like to know how to apply gravity to my character controller without using simple move.

You can only make the CharacterController move by using CharacterController.Move or CharacterController.SimpleMove. Another method to apply gravity to a gameobject is using the Rigidbody Component or you simply use transform.position.y-=Time.deltaTime*x;
I hope this helps…