Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local notes = {}
- notes['b'] = colors.white
- notes['f'] = colors.orange
- notes['c'] = colors.magenta
- notes['g'] = colors.lightBlue
- notes['d'] = colors.yellow
- while true do
- e = {os.pullEvent()}
- for i,v in pairs(notes) do
- if e[2] == tostring(i) then
- rs.setBundledOutput("back",v)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement