Discuss Scratch
- Discussion Forums
- » Project Save & Level Codes
- » Zoomscript Code Sharing
- BanSharp
-
Scratcher
1 post
Zoomscript Code Sharing
PLZZZZ AT COPY AND PASTE WITH CMND C CMND V SHORTCUT
- BlueBaritone21
-
Scratcher
43 posts
Zoomscript Code Sharing
The Tutorial 404ed. Is there any other way to learn it?
- WallydogChoppychop
-
Scratcher
500+ posts
Zoomscript Code Sharing
Ui Design Proposal for this
https://scratch.mit.edu/projects/782060931/
https://scratch.mit.edu/projects/782060931/
- Mazter33
-
Scratcher
41 posts
Zoomscript Code Sharing
¶0¶print “…”¶0¶wait 1¶0¶print “hi! welcome! what's your name?”¶0¶println¶0¶var username¶0¶username & get¶0¶println¶0¶print “hello, ”¶0¶print username¶0¶print “!”¶0¶println¶0¶print “you are welcome!”¶0¶var true¶0¶true = “true”¶0¶var cmd¶0¶var dtd¶0¶dtd & date dd¶0¶var dtm¶0¶dtm & date mm¶0¶var dty¶0¶dty & date y¶0¶while eq true “true”¶1¶println¶1¶print username¶1¶print “cmd/”¶1¶cmd & get¶1¶println¶1¶if eq cmd “help”¶2¶print “clr- clears console, date- shows date today”¶1¶endif¶1¶if eq cmd “clr”¶2¶clear¶1¶endif¶1¶if eq cmd “date”¶2¶print dtm¶2¶print “/”¶2¶print dtd¶2¶print “/”¶2¶print dty¶1¶endif¶1¶println¶0¶endwhile
please fix the date command in my simple terminal
please fix the date command in my simple terminal
- minesmart
-
Scratcher
12 posts
Zoomscript Code Sharing
It's amazing!
Last edited by minesmart (Feb. 27, 2023 02:21:26)
- minesmart
-
Scratcher
12 posts
Zoomscript Code Sharing
simple math quiz template
¶0¶var input¶0¶var equation¶0¶input = “70”¶0¶equation = “what is 20+50?”¶0¶print equation¶0¶equation & get¶0¶if eq equation input¶1¶print “correct! you got it right!”¶0¶else¶1¶print (“incorrect! it was ”,input,“!”)¶0¶endif
it will ask you what 20+50 = ? and you need to answer correctly.
you can change 20+50 to anything and change input to the answer!
¶0¶var input¶0¶var equation¶0¶input = “70”¶0¶equation = “what is 20+50?”¶0¶print equation¶0¶equation & get¶0¶if eq equation input¶1¶print “correct! you got it right!”¶0¶else¶1¶print (“incorrect! it was ”,input,“!”)¶0¶endif
it will ask you what 20+50 = ? and you need to answer correctly.
you can change 20+50 to anything and change input to the answer!
Last edited by minesmart (Feb. 27, 2023 02:50:14)
- grkw2020
-
Scratcher
500+ posts
Zoomscript Code Sharing
¶0¶# Guess the number¶0¶¶0¶print “Welcome to guess the number!”¶0¶println¶0¶print “You will have 6 guesses to guess my number.”¶0¶¶0¶var number¶0¶number & random 1 50¶0¶¶0¶println¶0¶print “I have chosen a number between 1 and 50”¶0¶¶0¶var lives¶0¶lives = 6¶0¶var guess¶0¶var guessed¶0¶guessed = 0¶0¶¶0¶while gt lives 0¶1¶println¶1¶guess & ask “Guess my number”¶1¶println¶1¶if gt guess number¶2¶print “Try a smaller number”¶1¶else¶2¶if lt guess number¶3¶print “Try a larger number”¶2¶else¶3¶guessed = 1¶3¶lives = 0¶2¶endif¶1¶endif¶1¶lives–¶0¶endwhile¶0¶¶0¶println¶0¶if eq guessed 1¶1¶print “Congratultaions! The answer was ”¶1¶print number¶1¶print “!”¶0¶else¶1¶print “Out of lives! The answer was ”¶1¶print number¶1¶print “!”¶0¶endif
A simple number guessing game.
A simple number guessing game.
- FoiMini321Expert
-
Scratcher
8 posts
Zoomscript Code Sharing
This is my first time in the language
and I made a simple program-
¶0¶print “this is my first program”
Nothing to special about the program
and I made a simple program-
¶0¶print “this is my first program”
Nothing to special about the program when green flag clicked
- MicahMaker
-
Scratcher
4 posts
Zoomscript Code Sharing
My Zoomscript
code:
¶0¶var say¶0¶¶0¶say = “what's your name?”¶0¶¶0¶print say¶0¶println¶0¶¶0¶var name¶0¶¶0¶name & get¶0¶¶0¶print (“hello ”,name,“, how are you?”)¶0¶println¶0¶¶0¶var mood¶0¶mood & get¶0¶¶0¶if eq mood “good”¶1¶print “that's great!”¶0¶else¶1¶if eq mood “bad”¶2¶print “oh, thats sad
”¶1¶else¶2¶print “alright then”¶1¶endif¶0¶endif¶0¶¶0¶println¶0¶¶0¶print “let's do some math!”¶0¶println¶0¶¶0¶print “give me a math equation.”¶0¶println¶0¶¶0¶var equation¶0¶var solved¶0¶¶0¶repeat 3¶1¶equation & get¶1¶¶1¶solved & math equation¶1¶¶1¶print (“the answer is: ”,solved,“.”)¶1¶println¶1¶¶1¶print “give me another equation!”¶1¶println¶0¶endrepeat¶0¶¶0¶println¶0¶println¶0¶¶0¶print “did you like this zoomscript? y/n.”¶0¶println¶0¶¶0¶var answer¶0¶answer & get¶0¶¶0¶if eq answer “y”¶1¶print “thx mr./ms.”¶1¶println¶0¶else¶1¶if eq answer “n”¶2¶println¶2¶print “tell me why.”¶2¶println¶2¶var feedback¶2¶feedback & get¶2¶println¶2¶print “thank you for your feedback”¶1¶endif¶0¶endif¶0¶¶0¶
code:
¶0¶var say¶0¶¶0¶say = “what's your name?”¶0¶¶0¶print say¶0¶println¶0¶¶0¶var name¶0¶¶0¶name & get¶0¶¶0¶print (“hello ”,name,“, how are you?”)¶0¶println¶0¶¶0¶var mood¶0¶mood & get¶0¶¶0¶if eq mood “good”¶1¶print “that's great!”¶0¶else¶1¶if eq mood “bad”¶2¶print “oh, thats sad
”¶1¶else¶2¶print “alright then”¶1¶endif¶0¶endif¶0¶¶0¶println¶0¶¶0¶print “let's do some math!”¶0¶println¶0¶¶0¶print “give me a math equation.”¶0¶println¶0¶¶0¶var equation¶0¶var solved¶0¶¶0¶repeat 3¶1¶equation & get¶1¶¶1¶solved & math equation¶1¶¶1¶print (“the answer is: ”,solved,“.”)¶1¶println¶1¶¶1¶print “give me another equation!”¶1¶println¶0¶endrepeat¶0¶¶0¶println¶0¶println¶0¶¶0¶print “did you like this zoomscript? y/n.”¶0¶println¶0¶¶0¶var answer¶0¶answer & get¶0¶¶0¶if eq answer “y”¶1¶print “thx mr./ms.”¶1¶println¶0¶else¶1¶if eq answer “n”¶2¶println¶2¶print “tell me why.”¶2¶println¶2¶var feedback¶2¶feedback & get¶2¶println¶2¶print “thank you for your feedback”¶1¶endif¶0¶endif¶0¶¶0¶- MicahMaker
-
Scratcher
4 posts
Zoomscript Code Sharing
¶0¶# something¶0¶¶0¶repeat 5¶1¶print “+”¶0¶endrepeat¶0¶println¶0¶repeat 5¶1¶print “+”¶0¶endrepeat¶0¶println¶0¶repeat 5¶1¶print “+”¶0¶endrepeat¶0¶¶0¶¶0¶clear¶0¶¶0¶#nextframe¶0¶¶0¶print “ ”¶0¶repeat 5¶1¶print “+”¶0¶endrepeat¶0¶println¶0¶print “ ”¶0¶repeat 5¶1¶print “+”¶0¶endrepeat¶0¶println¶0¶print “ ”¶0¶repeat 5 ¶1¶print “+”¶0¶endrepeat¶0¶¶0¶clear¶0¶¶0¶#nextframe¶0¶¶0¶print “ ”¶0¶repeat 5¶1¶print “+”¶0¶endrepeat¶0¶println¶0¶print “ ”¶0¶repeat 5¶1¶print “+”¶0¶endrepeat¶0¶println¶0¶print “ ”¶0¶repeat 5¶1¶print “+”¶0¶endrepeat¶0¶¶0¶println¶0¶println¶0¶¶0¶#big “m”¶0¶¶0¶var value¶0¶¶0¶value & random 50 100¶0¶¶0¶repeat value¶1¶print “m”¶0¶endrepeat
- Stickmanongoing55o7
-
Scratcher
11 posts
Zoomscript Code Sharing
Here's an insanely simple calculator I made:
¶0¶var one¶0¶var two¶0¶var ans¶0¶¶0¶print “Welcome to the most simplest calculator in the world!”¶0¶println¶0¶wait 1¶0¶print “It only does addition! Pretty cool right?”¶0¶println¶0¶wait 1¶0¶print “Now give me a random number!”¶0¶println¶0¶one & get¶0¶print “Good, now give me another one!”¶0¶println¶0¶two & get¶0¶print “Now, let the calculator do it's own thing!”¶0¶println¶0¶¶0¶ans & math (one,“+”,two)¶0¶¶0¶print (one,“ + ”,two,“ is equal to: ”,ans)
¶0¶var one¶0¶var two¶0¶var ans¶0¶¶0¶print “Welcome to the most simplest calculator in the world!”¶0¶println¶0¶wait 1¶0¶print “It only does addition! Pretty cool right?”¶0¶println¶0¶wait 1¶0¶print “Now give me a random number!”¶0¶println¶0¶one & get¶0¶print “Good, now give me another one!”¶0¶println¶0¶two & get¶0¶print “Now, let the calculator do it's own thing!”¶0¶println¶0¶¶0¶ans & math (one,“+”,two)¶0¶¶0¶print (one,“ + ”,two,“ is equal to: ”,ans)
when green flag clicked
ask [Are you looking for games that aren't your typical generic platformers? ] and wait
if <(answer) = [Yes!]> then
say [You have come to the right place] for (69420) secs
else
say [Okay...] for (69420) secs
end
- Stickmanongoing55o7
-
Scratcher
11 posts
Zoomscript Code Sharing
Here's an insanely simple calculator I made:
¶0¶var one¶0¶var two¶0¶var ans¶0¶¶0¶print “Welcome to the most simplest calculator in the world!”¶0¶println¶0¶wait 1¶0¶print “It only does addition! Pretty cool right?”¶0¶println¶0¶wait 1¶0¶print “Now give me a random number!”¶0¶println¶0¶one & get¶0¶print “Good, now give me another one!”¶0¶println¶0¶two & get¶0¶print “Now, let the calculator do it's own thing!”¶0¶println¶0¶¶0¶ans & math (one,“+”,two)¶0¶¶0¶print (one,“ + ”,two,“ is equal to: ”,ans)when green flag clicked
ask [Are you looking for games that aren't your typical generic platformers? ] and wait
if <(answer) = [Yes!]> then
say [You have come to the right place] for (69420) secs
else
say [Okay...] for (69420) secs
end
Might make a text adventure game…
- tim_buck_II
-
Scratcher
57 posts
Zoomscript Code Sharing
The Tutorial 404ed. Is there any other way to learn it?You could probably use the way back machine
- yesthedodecahedron
-
Scratcher
3 posts
Zoomscript Code Sharing
Something peculiar I've found: the last modified date is September 29, 2025, 9:56 PM GMT.
- Discussion Forums
- » Project Save & Level Codes
-
» Zoomscript Code Sharing












