At the end of my game text pops up and says You win (or you lose). How do I get it so my text moves across the screen?
Let's assume you assigned the Text object to a variable:
endGameText = Text(...)
Then you can call
endGameText.move(dx,dy)
Repeatedly in a loop, with time.sleep(...) between each move...