Advertisement
Guest User

music.lua

a guest
Jun 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. local tool = peripheral.wrap("right")
  2. local instrument = "harp"
  3.  
  4. function play(note)
  5.     tool.playNote(instrument, note)
  6. end
  7.  
  8. while true do
  9.     play(22)
  10.     sleep(0.5)
  11.     play(21)
  12.     sleep(0.5)
  13.     play(22)
  14.     sleep(0.5)
  15.     play(22)
  16.     sleep(0.5)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement