Advertisement
HappySunChild

Beep-OpenComputers

Aug 7th, 2022
1,060
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. -- "haha computer make funny beeping noises and its really obnoxious"
  2.  
  3. local computer = require("computer")
  4.  
  5. local x = 0
  6.  
  7. while true do
  8.   computer.beep(math.random(50,1000),0.1,1000)
  9.   os.sleep()
  10.  
  11.   x = x + 1
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement