However, even though cre8or is a great tool to helping to understand how to get into programming games, there are many others out there.
One of the most popular (and one of my most hated) ones is GameMaker.
The Turing programming language is entry level programming language designed for beginners. And it allows a lot freedom as well as its extremely easy to get into and use. I remembered this to a lot of beginners because you can do so much with it so easily, and everything you learn can be directly translated into other programming languages such as C++, which makes going from Turing to other languages really easy (Unlike GameMaker and such).
Now of course you could just go straight into a language like C++ or Java. Java is sluggish and easy to recompile but it offers everything in one bundle.
C++ or C is extremely fast (depending on the implication and how you use it) and secure, but are the hardest for someone who has no idea what they are doing. Because it offers full freedom over a basic, low level language, the user has do everything themselves or find pre-compiled code (libraries) to do that for them, there's also open source code you can use depending on the license (which also when looking for libraries make sure you know what the license on using it is). The main library I use in my project is opengl.
Precompiled code with tells drivers on your graphics card to draw things using matrices to make it look 3D.
I would suggest C++ when you want full horse power form you're computer, but you got to know how to harness that power before you can ride it
in other words, its not the greatest for beginners, but you can still start out with it, it just takes longer to get what you want showing.
Another note about licenses, make sure you read the ones with all the software you use, some say you cannot distribute and sell your product without purchasing a license form them to do so.
Have fun scripting or coding which ever you choose (and remember if you choose one, doesn't mean you cant learn another, you can try all of them if you wanted to).