summary refs log tree commit diff stats
path: root/scripts/movplat.lua
blob: 21cc61aee7f2271bf5d1f8a02d3e5baf1882d9b0 (plain) (blame)
1
2
3
4
5
6
7
8
movplat = {}

function movplat.Behavior(id)
  while true do
    moveRight(id, 90, 30)
    moveLeft(id, 90, 30)
  end
end