Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- REM Put this code in any text editor then save this file as
- REM robloxquizbatch.bat and run it.
- cls
- set defaultcolor=0c
- set quizcolor=0a
- set chkp=03
- set fcolor=02
- color %defaultcolor%
- goto intro
- :intro
- cls
- echo -----------------
- echo ^|THE ROBLOX QUIZ^|
- echo -----------------
- timeout /t 1 /nobreak >nul
- goto menu
- :wrong
- color c0
- cls
- echo ---------------------------
- echo YOU GOT THE QUESTION WRONG!
- echo ---------------------------
- timeout /t 1 /nobreak >nul
- color %defaultcolor%
- goto menu
- :menu
- cls
- echo -----------------
- echo ^|THE ROBLOX QUIZ^|
- echo -----------------
- echo Press P to play
- echo Press X to exit
- choice /c PX /n
- if %errorlevel%==1 goto question1
- if %errorlevel%==2 exit
- :question1
- color %quizcolor%
- cls
- echo 1.) Who has the user ID of 261?
- echo 1. Shedletsky ^| 2. Telamon
- echo 3. builderman ^| 4. ROBLOX
- choice /c 1234 /n
- if %errorlevel%==1 goto question2
- if %errorlevel%==2 goto wrong
- if %errorlevel%==3 goto wrong
- if %errorlevel%==4 goto wrong
- :question2
- cls
- echo 2.) Who is the creator of Welcome to ROBLOX Building?
- echo 1. ROBLOX ^| 2. JJ5x5
- choice /c 12 /n
- if %errorlevel%==1 goto question3
- if %errorlevel%==2 goto wrong
- :question3
- cls
- echo 3.) Why were circle studs removed?
- echo 1. Because ROBLOX might get sued if old studs
- echo were kept
- echo 2. Because the studs looked too plain
- choice /c 12 /n
- if %errorlevel%==1 goto question4
- if %errorlevel%==2 goto wrong
- :question4
- cls
- echo 4.) What was the first ever swordfighting
- echo game made?
- echo 1. King of the Hill
- echo 2. Sword Fight on the Heights Original
- choice /c 12 /n
- if %errorlevel%==1 goto wrong
- if %errorlevel%==2 goto question5
- :question5
- cls
- color %chkp%
- echo 5.) Who made Kohls Admin Commands?
- echo 1. Person299
- echo 2. Kohltastrophe
- choice /c 12 /n
- if %errorlevel%==1 goto wrong
- if %errorlevel%==2 goto question6
- :question6
- cls
- color %fcolor%
- echo You have reached the end of the game.
- echo More questions will come soon!
- echo Press any key to exit.
- pause >nul
- exit
Advertisement
Add Comment
Please, Sign In to add comment