Advertisement
Jummit

Engine installer

Mar 16th, 2018
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. local demo = http.get("https://raw.githubusercontent.com/Jummit/Pinwyn-Engine/master/demo.lua").readAll()
  2. local engine = http.get("https://raw.githubusercontent.com/Jummit/Pinwyn-Engine/master/engine").readAll()
  3. local file = fs.open("engine", "w")
  4. file.write(engine)
  5. file:close()
  6. local file = fs.open("demo", "w")
  7. file.write(demo)
  8. file:close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement