Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local FilePath = "os/System/Client/Files/VideoTest2.fbv/Frame"
- fs.makeDir("os/System/Client/Files/VideoTest2.fbv")
- for i = 1, 20 do
- local Tiles = {math.random(100000,999999),math.random(100000,999999),math.random(100000,999999),math.random(100000,999999)}
- local file = fs.open(FilePath..i,"w")
- for I = 1, #Tiles do
- file.writeLine(Tiles[I])
- end
- file.close()
- end
- print("Finished")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement