This article or section may not have content matching Scratch Wiki editing standards. Please improve it according to Scratch Wiki:Guidelines and Scratch Wiki:Editing Conventions. (Date?)
Reason: It's not clear what exactly a "pick up your character" project is, so further improvements to this code, or the addition of explanatory text in a professional manner, are difficult
when green flag clicked
set drag mode [draggable v]
forever
if on edge, bounce
if <touching color (#000000) ?> then
switch costume to (costume1 v)
else
switch costume to (costume2 v)
glide (0.3) secs to x: (x position) y: (-22)
repeat (3)
change y by (4)
end
repeat (3)
change y by (-3)
end
repeat (3)
change y by (-2)
end
repeat (3)
change y by (1)
end
end
end