Discuss Scratch
- Discussion Forums
- » Show and Tell
- » SUPER EASY Score Counter
- jup-tutor
-
Teacher
16 posts
SUPER EASY Score Counter
I'm just making this for those who are confused about how to make a score counter and don't want to steal one from some random Joe. Well, that's what I'm for! I have probably the easiest score counter you'll ever make. First, you want to make 10 costumes. The first 9 are just the numbers 1-9(1, 2, 3, 4, 5, 6, 7, 8, 9), and the tenth one should be blank, and be named “” (don't give it a name). Then you make 2 variables: a score variable and a digit variable.
That's all, hope y'all use this well and give me credit
when green flag clicked
hide
set [digit v] to (1) // make this for this sprite only by the way
set [score v] to (0)
set size to (150) % // depending on how big your text already is, you can adjust this to taste
repeat (7)
create clone of [myself v]
change [digit v] by (1)
end
when I start as a clone
show
forever
go to [front v] layer
go to x: (((digit) * (20)) + (-270)) y: (150) // the 20 is the spacing, so feel free to change, and the -270 is the x pos. Feel free to change aswell
switch costume to (letter (digit) of (score))
end
That's all, hope y'all use this well and give me credit
- Discussion Forums
- » Show and Tell
-
» SUPER EASY Score Counter

