Walk Bot

From Box Critters Modding Wiki
Jump to navigation Jump to search

Made by booming battery(emnothespy) walk bot makes you walk back and forth.

Port code:

 1 function M1() {
 2 setTimeout(M2, 10000)
 3 world.sendMove(10000,275)
 4 }
 5 function M2() {
 6 setTimeout(M1, 10000)
 7 world.sendMove(500,275)
 8 }
 9 
10 M1()