Scores
Most games have scores to motivate players to achieve. An addiction to beating the 'high score' is what makes computer games successful. This is therefore a good feature to add to a game. In fact, there isn't inbuilt scoring in Paper (or Unity and Unreal for that matter) because it is easier to add a score variable to the game code rather than the game engine. You need to define a 'score' attribute in a character blueprint and then in the update function detect if you need to increase it. When the update function is called, you check for the gain point condition (e.g. being on top of some food). If this condition is satisfied, a simple addition equation adds one to the score. Remember to make sure that the condition won't be triggered again by the same thing (e.g. delete the food). The score can be displayed by using the print function or using HTML.