How do I put a main menu at the start of my game with Start
Load
Quit
On it?
I would suggest you save a room as intro.crm and then on that page, have the buttons with assigned actions. when you have that done, tell us what kind of style you are looking for like an original concept for your load screen, or of a well known gaming company style.
any info you can give us would be great
How do I make a button load a game using script?
Ok forget the first question can someone just tell me how to make it quit the game with script and the same with loading games?
QuitGame(0);
or QuitGame(1);
One of those asks if you are sure that you want to quit. I'm not sure which, so you'll have to read the manual.
Okay, here goes. Make a room with three button graphics (not button OBJEECTS) on it, labeled Start, Load, and Quit.
In AGS, load up the room image, then create three hotspots, one over each "button". In the first hotspot, choose its "player clicks on hotspot" interaction and have it load up Room #1. Have the second one use RestoreGame(...) and the third QuitGame(...). Look both of those up in the manual. :)