Advertisement
Aranyalma2

Exp_Timer

Jun 11th, 2020
1,050
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1.  --pkuNuauq
  2.  
  3.  Input = false
  4.  timer = 100 --delay in seconds
  5.  
  6.  
  7.  --main
  8.  while true do
  9.     Input = redstone.getInput("right")
  10.     if Input  then 
  11.         redstone.setOutput("left", true)
  12.         print("ON")
  13.         os.sleep(timer)
  14.         redstone.setOutput("left", false)
  15.         print("OFF")
  16.     end
  17.     os.sleep(1)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement