let gif; // Declare a variable to hold the GIF function preload() { // Load the GIF before setting up the sketch gif = createImg('MomaGoose 1 - Made with Clipchamp.gif'); } function setup() { createCanvas(400, 400); gif.position(100, 100); // Set the position of the GIF on the canvas }