Marlingaming

VideoTest

Mar 3rd, 2022 (edited)
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if fs.exists("Test.svf") then
  2.  
  3. else
  4. fs.makeDir("Test.svf")
  5. end
  6. local F1 = fs.open("Test.svf/Frame1","w")
  7. F1.writeLine("333")
  8. F1.writeLine("444")
  9. F1.writeLine("555")
  10. F1.close()
  11. local F2 = fs.open("Test.svf/Frame2","w")
  12. F2.writeLine("555")
  13. F2.writeLine("333")
  14. F2.writeLine("444")
  15. F2.close()
  16. local F3 = fs.open("Test.svf/Frame3","w")
  17. F3.writeLine("444")
  18. F3.writeLine("555")
  19. F3.writeLine("333")
  20. F3.close()
Add Comment
Please, Sign In to add comment