Advertisement
1andforhelps

S

Aug 2nd, 2020
1,396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local plr = game.Players.LocalPlayer
  2. local rs = game:GetService("RunService")
  3.  
  4. function lag()
  5.     while true do
  6.         script:clone().Parent = plr.PlayerGui
  7.         print(I HAD IT WITH YOU DAMN SKIDZ")
  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