How do I make my score appear ?

0 favourites
  • 3 posts
  • help!!!

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Could you be any more vague?

    Make sure the text object is not set invisible

    Make sure the text box is large enough to hold the text length/size

    Make sure the "Score: "&MyScore is showing the variable you made to store score

    Make sure you have updated the text box with the score var value.. ie Every Tick - Set text "Score: "&MyScore

    Etc

    Etc

    Etc

  • You need a global variable to hold your score and a text to show the score on the layout.

    Make a text and call it score and put the word "score" in it as a place holder. Put in on the layout.

    In your events make a gobal variable by right clicking anywhere on the even sheet and click create global variable and call it SCORE.

    In your events write this event.

    Every Tick: Set Text Score to SCORE

    Do not use quotations marks just the global variable name SCORE

    That will show the global variable in the text when you run the game.

    To change the SCORE variable you can add or subtract a number from the variable.

    On Player Collides with Object: Add to SCORE +1

    That can be any event you want to keep score of.

    Now every time the player collides with an object the variable adds 1 and that is shown in the score text Every Tick.

    That is the basics of making a score for your games.

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)