View difference between Paste ID: jGAz7u6z and D45UgDnp
SHOW: | | - or go back to the newest paste.
1
m = peripheral.wrap("back")
2
up = 5
3
side = 0
4
5
while true do
6
	m.setBackgroundColor(colors.blue)
7
	m.setTextColor(colors.black)
8
	m.clear()
9
	m.setCursorPos(3,1)
10
	m.write("KEEP CALM AND")
11
	m.setCursorPos(2,2)
12
	m.write("GO TO THE")
13
	m.setCursorPos(1,3)
14
	m.write("BANK !!!")
15
	--MOUVEMENT POUR BITCH
16
	side = math.random(1,10)
17-
	m.setCursorPos(up,side)
17+
	m.setCursorPos(side,up)
18
	m.write("BITCH")
19
	sleep(1)
20
end