QuickMuffin8782-Alt

MineOS Kidz Installer

Nov 7th, 2020 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. require("component").eeprom.set([[
  2.     local handle, data, chunk = component.proxy(component.list("internet")()).request("https://gitlab.com/QuickMuffin8782-CC/MineOS-Kidz/-/raw/master/Installer/Main.lua"), ""
  3.    
  4.     while true do
  5.         chunk = handle.read(math.huge)
  6.         if chunk then
  7.             data = data .. chunk
  8.         else
  9.             break
  10.         end
  11.     end
  12.  
  13.     handle.close()
  14.         computer.beep(400, 0.1)
  15.     load(data)()
  16. ]])
  17.  
  18. require("computer").shutdown(true)
Add Comment
Please, Sign In to add comment