A Microsoft file hosting and synchronization service.
Lol I think I understand what you are trying to ask,
Just a kind reminder for future reference, for similar subject matter you should use "small-basic"
as for the code try this:
score=2
HighScore = File.ReadLine("C:\Users\jrmrh\OneDrive\HighScore.txt",1)
If score > HighScore Then
GraphicsWindow.ShowMessage( "Game Over. You have beaten the current high score: " + HighScore + ".", "Title" )
File.WriteLine("C:\Users\jrmrh\OneDrive\HighScore.txt",1,score)
Else
GraphicsWindow.ShowMessage( "Game Over.", "Title" )
EndIf