Advertisement
super_koder

CC:NumberWorks-Installer

Jun 16th, 2024 (edited)
613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. local prefix = "https://raw.githubusercontent.com/bigsticc/CC-NumberWorks/main/"
  2.  
  3. local function install(name)
  4.     local conn = http.get(prefix .. name)
  5.     local text = conn.readAll()
  6.     local file = fs.open(name, "w")
  7.     file.write(text)
  8.     file.close()
  9. end
  10.  
  11. install("install.txt")
  12.  
  13. local manifest = io.open("install.txt")
  14. for line in manifest:lines() do
  15.    install(line)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement