Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How you make a Point System?
        ![[RSS Feed] [RSS Feed]](//cdn.scratch.mit.edu/scratchr2/static/__5b3e40ec58a840b41702360e9891321b__//djangobb_forum/img/feed-icon-small.png)  
- Yellowtoad999YT
- 
                             Scratcher Scratcher
15 posts
How you make a Point System?
I trying my hardest best to get it work but it didn't work.
                        
                        
                    - SpideyPlaysMC
- 
                             Scratcher Scratcher
500+ posts
How you make a Point System?
Make a variable:
                        
                        
                    (score)Then do this:
when green flag clicked
set [score v] to [0]
forever
if <touching [... v] ?> then//the sprite that will give points
change [score v] by (1)
wait until <not <touching [... v] ?>>//this prevents the sprite that touches the other from getting more than one point
end
end
- yellowmarkers
- 
                             Scratcher Scratcher
55 posts
How you make a Point System?
your joking right?Honestly thats kinda rude, some people are new to scratch and need genuine help.
- BananaApokalypse
- 
                             Scratcher Scratcher
23 posts
How you make a Point System?
Yellowtoad999YT, your character usually earns points based off of collecting something, or based off of the time expired in such game/event. If you're doing something like collecting a coin, use this script…
If you want to do something time based, let's say you get a point every second you are alive, you could do
Hope this helps!
                        
                            when green flag clicked
forever
if <touching [ coin] ?> then
change [ score] by (1)
end
If you want to do something time based, let's say you get a point every second you are alive, you could do
when I receive [ Game Start]
forever
wait (1) secs
change [ score] by (1)
end
Hope this helps!
Last edited by BananaApokalypse (March 20, 2020 14:08:33)
- OneSoulWolf16
- 
                             Scratcher Scratcher
1 post
How you make a Point System?
i can't get the code right. ive done more that 1 different ways, and i am struggling with adding a score.
                        
                        
                    - Moannastar
- 
                             New Scratcher New Scratcher
1 post
How you make a Point System?
I am trying to make a quiz but I don't know how t make a point system of it 
                        
                        
                    - Discussion Forums
- » Help with Scripts
- 
            » How you make a Point System? ![[RSS Feed] [RSS Feed]](//cdn.scratch.mit.edu/scratchr2/static/__5b3e40ec58a840b41702360e9891321b__//djangobb_forum/img/feed-icon-small.png)  
![[RSS Feed] [RSS Feed]](http://cdn.scratch.mit.edu/scratchr2/static/__5b3e40ec58a840b41702360e9891321b__//djangobb_forum/img/feed-icon-small.png)








