Mr_Creeper543

lightCommand.lua

Jun 17th, 2020 (edited)
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. component = require("component")
  2. lights = component.list("openlight")
  3. command = ""
  4.  
  5. function findLights()
  6.   for k , v in pairs(lights) do
  7.     component.invoke(command)
  8.   end
  9. print("Command Executed")
  10. os.exit()
  11. end
  12.  
  13. function getCommand()
  14.   print("Please provive light command")
  15.   io.read(command)
  16.   findLights()
  17. end
  18.  
  19. getCommand()
Add Comment
Please, Sign In to add comment