Introduction: How to Create a Matrix Effect Using Notepad

About: I like to do things!

Today I will be showing you how to make a Matrix Effect using Notepad. This is my very first Instructable so please no hate. The video attached is from my YouTube Channel.(READ COMMENTS)

Step 1: Open the Notepad Application

If you are running Windows 10 then simply click on the Cortana icon at the bottom. Then, type in "Notepad"

Step 2: Add Code

Either type this in or copy paste it (Note:%random% is supposed to be spammed)

===CODE===

@echo off
title Matrix

color 0a

mode 1000

goto greeting

:greeting

cls

echo Hello, Welcome to the Matrix!

pause

cls

goto

Matrix

:Matrix echo %random%

PING 1.1.1.1 -n -w 0,3 >NUL

goto Matrix

Step 3: Save the File

Click "File"--------->Save As

Then save file as a .bat not .txt

Step 4: Complete! You Made It!

Thanks for viewing hope you enjoy! Next Step: ExplanationAfter That: Disclaimer

Step 5: Explaination

===CODE===

@echo off

title Matrix -----Gives the window a title

color 0a ----- What color the font will be

mode 1000 -----Speed

goto greeting Command to go to greeting page

:greeting Greeting Section

cls clears screen

echo Hello, Welcome to the Matrix! -----Echo pretty much means it will print it on the screen

pause --------This and cls help make a title page(I may be wrong, I am no expert)

cls clears scren

goto Matrix -----Command to go to matrix section

:Matrix Matrix Section

echo %random% -------%random% means print a random number

PING 1.1.1.1 -n -w 0,3 >NUL -----Also speed

goto Matrix loops the matrix effect

Step 6: DISCLAIMER

NO HARMFUL INTENTIONS WHILE MAKING THIS INSTRUCTABLE. I AM NOT HELD RESPONSIBLE FOR ANY DAMAGE OR HARM CAUSED BY THE MAKING OR DISTRIBUTING THIS PROGRAM. THIS IS MEANT FOR ENTERTAINMENT PURPOSES ONLY