Advertisement
osmarks

simplefly

Jan 5th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local modules = peripheral.wrap "back"
  2.  
  3. local name = "gollark"
  4.  
  5. while true do
  6.     local meta = modules.getMetaByName(name)
  7.    
  8.     while meta.isSneaking do
  9.         meta = modules.getMetaByName(name)
  10.         modules.launch(meta.yaw, meta.pitch, 4)
  11.         sleep(0.1)
  12.     end
  13.  
  14.     if meta.motionY < -0.8 then
  15.         modules.launch(0, 270, 2)
  16.     end
  17.  
  18.     sleep(0.4)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement