xxxxxxxxxx
31
/*
Mike Wazowski Image:
https://en.meming.world/wiki/Mike_Wazowski-Sulley_Face_Swap
*/
var mikeImage;
function mousePressed() {
save('Mike.jpg')
}
function preload() {
mikeImage = loadImage('Mike.jpg');
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
image(mikeImage,-100,-10)
square(0,-300,400)
stroke(4)
textSize(20)
text('When you get on Discord and no one is on',width/25, height/5)
}