none101k

trurtle

Jul 5th, 2026 (edited)
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. local animatronic = peripheral.find("animatronic")
  2.  
  3. -- Make it stand normally rather than hanging,
  4. -- like it does by default.
  5. while true do
  6. os.sleep(1)
  7. animatronic.setHeadRot(0,0,0)
  8. animatronic.setLeftArmRot(-120,0,0)
  9. animatronic.setRightArmRot(0,0,0)
  10. animatronic.push()
  11. os.sleep(1)
  12. animatronic.setHeadRot(0,0,0)
  13. animatronic.setLeftArmRot(0,0,0)
  14. animatronic.setRightArmRot(0,0,0)
  15. animatronic.push()
  16. end
Advertisement
Add Comment
Please, Sign In to add comment