First, you have to find out the borders of the text so they can be like buttons. Imagine the text is in a box. You have to find the coordinates of each edge of the box. To do this, print the mouse x and y on the screen like this.
set cursor 0,0:print "Mousex:";str$(mousex())
set cursor 0,20:print "Mousex:";str$(mousey())
Then you would record the coordinates you find.
Then you would have it so that when the mouse clicks in this area, it knows what button is clicked. Lets say the coordinates are 10 and 50 for the x and 10 and 40 for the y.
if mouseclick()=1 and mousex()>10 and mousex<50 and mousey>10 and mousey<40 then Button=1
If Button=1 then cls:gosub Start
And so on.
Here is an example.
do
`Display the mouse coodinates
set cursor 0,0:print "Mousex:";str$(mousex())
set cursor 0,20:print "Mousex:";str$(mousey())
`See if the Start button was clicked
if mouseclick()=1 and mousex()>10 and mousex<50 and mousey>10 and mousey<40 then Button=1
If Button=1 then cls:gosub Start
loop
Start:
`Put code you want here
return
Don't let life get you down, it will only get better.