A few corrections: Can* someone* help me* make* a* game?*
You would have to show what your coding abilities are first. Most people are only willing to help those that are able to help themselves. (AKA those that at least have some kind of base knowledge of coding and game development.)
If you need help with learning how to code you should ask that instead.
You may think something like that is simple, but it actually involves a bunch of instructions, each with their own function.
First of all, you should know about what a main loop is. It is a loop, such as a WHILE loop, that continues as long as the game is running. Inside the loop, you will have most of your program logic. For each iteration of the loop you will also render an individual frame.
If you don't know what a WHILE loop is, I suggest you start off by reading the instruction manual included within the game (press the Home button and select the manual) and also reading the official e-manual. You can find that here:
http://smilebasic.com/en/e-manual/manual11
Otherwise, please tell me if you are ready for the rest of the explanation.
The first code to learn is PRINT. If you want to print something do
PRINT "(Text)"
If you want the text in a different spot, do
LOCATE 8,8:PRINT "(Text)"