Advertisement
JackMacWindows

CCKernel2 Quick Installer

May 27th, 2019
4,076
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. print("Downloading latest installer...")
  2. local file = http.get("https://raw.githubusercontent.com/MCJack123/CCKernel2/master/CCKernel2Installer.lua")
  3. local out = fs.open("install.lua", "w")
  4. out.write(file.readAll())
  5. file.close()
  6. out.close()
  7. shell.run("/install.lua")
  8. fs.delete("/install.lua")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement