Attributes Activating in Multiples of ten

eligameseligames Member, PRO Posts: 40

Hello I was wondering if there was any way you can make an attribute happen every 10 times. I have a score and when it hits multiples of 10 then I want to display the score in big numbers.

Comments

  • IceboxIcebox Member Posts: 1,485
    edited March 2018

    You can try doing this

    if mod(game.Score,10) = 0 and Game.Score > 0
    display the score in big numbers

  • eligameseligames Member, PRO Posts: 40

    Awesome Thank you

Sign In or Register to comment.