Guest User

expose.lua

a guest
Mar 6th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. function main()
  2.     if #arg ~= 1 then
  3.         error("Expected 1 argument(s): playerToExpose")
  4.     end
  5.    
  6.     rednet.open("back")
  7.     rednet.broadcast(arg[1], "expose")
  8. end
  9.  
  10.  
  11.  
  12. main()
Add Comment
Please, Sign In to add comment