ok so i came acrossed a bug where if you type two it will flash rose's bio for a split second then go back to story select im gonna post my code in a sec
You are calling PRINT "Play as Rose... instead of INPUT "Play as Rose...
You should really make a generic input handling function for menu choices. You have nearly the same code twice, and it doesn't handle bad input.
I think you want a menu like the attached screen shot. You just move to a choice with up/down and select with a or b. The function takes a delimited string as input and returns the index selected.
Sample code part 3 of 3. If you add all of that to your code and use that choice function, it should make things easier to code, debug, be more resistant to invalid input, and look a bit nicer too. Have fun.