Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if fs.exists("Test.svf") then
- else
- fs.makeDir("Test.svf")
- end
- local F1 = fs.open("Test.svf/Frame1","w")
- F1.writeLine("333")
- F1.writeLine("444")
- F1.writeLine("555")
- F1.close()
- local F2 = fs.open("Test.svf/Frame2","w")
- F2.writeLine("555")
- F2.writeLine("333")
- F2.writeLine("444")
- F2.close()
- local F3 = fs.open("Test.svf/Frame3","w")
- F3.writeLine("444")
- F3.writeLine("555")
- F3.writeLine("333")
- F3.close()
Add Comment
Please, Sign In to add comment