hey !I have seen your various videos . You do a great work .It helps the beginners understand some basic uses of blocks.Plz keeep it up and make more videos like this.
@sayuwami69694 жыл бұрын
how to make the score appear on background if we have use setAnimation for background ?
@computerscienceandcoding77414 жыл бұрын
Make sure the text block for score is below draw sprites.
@computerscienceandcoding77413 жыл бұрын
The background sprite is likely covering up your score. Move the text block that displays score down below the drawsprites. 10 months!
@Trndndf4 жыл бұрын
again, thanks these tutorials really help
@alexzandria96232 жыл бұрын
it really helps kids learn how to do code more
@jaydenrodriguez4614 жыл бұрын
i tried to put the score on my screen but it just says score instead of showing an actual score
@computerscienceandcoding77414 жыл бұрын
Take the quotes off of score
@lebronDaGoat-14 жыл бұрын
thanks dude really appreciate ur work congrats u just earned a sub
@lebronDaGoat-14 жыл бұрын
replying myself
@justachannelwith5videos3482 жыл бұрын
Without this video I would be held back 😳
@koreoprezzii3 жыл бұрын
oh my fuckin God thank you so much i was having so much trouble and all I had to do was not use the var for the 2nd score. Literally been searching everywhere and you just made it simple so thanks
@jaydenrodriguez4614 жыл бұрын
Do u know how to fix this and if so how
@allyrogin0 Жыл бұрын
Thank you so much! But what if the background is sprite?
@computerscienceandcoding7741 Жыл бұрын
Should work the same. Just make sure the text block that holds your score is somewhere below the drawSprites block (but still inside the draw loop).
@Ness_brawl_stars10 ай бұрын
BRO YOU ARE THE GOAT I LOVE YOU MAN I JUST PASSED MY EXAM BECAUSE OF YOU AND REMEMBERJNG WHAT YOU SAID
@Cameron00014 жыл бұрын
Thank you so much. I needed this.
@airaa..a3 жыл бұрын
Oh my gosh this was posted on my birthday 2 years ago-
@pr1me5954 жыл бұрын
You showed me how to use the score but its not the way I want to do it I want it like the label shows the score with like 0 then when you do something it turns to 10 then more then more.
@computerscienceandcoding77413 жыл бұрын
Are you saying you want the score to increment in 10s instead of 1s? If so, use score=score +10;
@pr1me5953 жыл бұрын
@@computerscienceandcoding7741 thanks but that was 3 months ago but thanks for telling me
@yoursleepparalysisdemon18284 жыл бұрын
can you redo this with real coding? I'm learning it and well i don't know where the quotation marks and parentheses always go. edit: I figured it out, but whenever I do it, its [object Object] and whenever the scored go up it adds 1 at the end of it
@ferg2sick3 жыл бұрын
thanks for the help man
@araceli75373 жыл бұрын
Great video, I really needed this!!
@tannercasey26543 жыл бұрын
This helped me a lot
@devyanshtandon4 жыл бұрын
Thanks a lot
@kathryn77333 жыл бұрын
Thank you so much!!
@Shaan-mk4sz4 жыл бұрын
Super helpful. Thank you!
@WambuaLooba4 жыл бұрын
thanks for this
@pinnapleope594710 ай бұрын
saving my group project lol
@henry11913 жыл бұрын
Is there a way to make it so when the score reaches X a new sprite appears on the screen?
@computerscienceandcoding77413 жыл бұрын
Yes. If score>10, You can use the sprite visible property. After making the sprite, set visible to false. Then inside the if, set visible to true to make a sprite appear.