Green flag. You can use that sprite wherever you want! Just give credit to me and this guy: https://www.youtube.com/watch?v=MgffSUwTeKw Make sure other sprites stop their scripts when "Lazy Town Stop Sounds" is broadcast! Make this appear by broadcasting "Lazy Town DLYKWI". The sprite will appear above all others using "go to front" unril the curtain closes. From there do whatever you want.
(See how I made it below) Thanks to @Jonathan50 for making this work without Turbo Mode! Drake and Josh, Lady Gaga: Audio Ubisoft: Images Audacity: Sound editing and clipping Myself: Everything else (Credits from my project "Spherical", which is in the background.) By the way, totally let your kids watch my project. Why would you listen to a supervillain? To make this, I took the MP4 the original author on YT put in the description (thanks!) and converted it to an image sequence with avconv. Then with ImageMagick I used this bash script to chroma-key the images: #!/bin/sh for i in images/* do convert $i -bordercolor black -border 1x1 -matte -fuzz 33% -draw 'matte 1,1 floodfill' -transparent \#00ff00 -shave 1x1 images_done/$i done Then I used the Python module Kurt to add all the images to the sprite. If you don't know what any of that is, don't worry. Basically I took the video, turned it into a bunch of images, then took out the green-screen and used a tool to put into a Scratch project file.