Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. local libURL = "https://raw.githubusercontent.com/acidjazz/drmon/master/lib/f.lua"
  2. --local startupURL = "https://raw.githubusercontent.com/acidjazz/drmon/master/drmon.lua"
  3. local lib--, startup
  4. local libFile, startupFile
  5.  
  6. fs.makeDir("lib")
  7.  
  8. lib = http.get(libURL)
  9. libFile = lib.readAll()
  10.  
  11. local file1 = fs.open("lib/f", "w")
  12. file1.write(libFile)
  13. file1.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement