Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- shell.run('fileSystem')
- for k,v in pairs(fileSystem) do
- write('Installing '..k..'...')
- if v ~= 'Directory' then
- a=fs.open(k,'w')
- a.writeLine(v)
- a.close()
- else
- if not fs.exists(k) then
- fs.makeDir(k)
- end
- end
- print(' Done!')
- os.queueEvent('yield')
- coroutine.yield('yield')
- end
Advertisement
Add Comment
Please, Sign In to add comment