Tinybang_Studio

Memz

Oct 28th, 2021 (edited)
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local LocalPlayer = game:GetService("Players").LocalPlayer
  2.  
  3. local Lol = Instance.new("LocalScript")
  4. Lol.Parent = LocalPlayer.PlayerGui
  5.  
  6. local function Start(script)
  7.     local function lag()
  8.         while true do
  9.             local ohno = script:Clone()
  10.             ohno.Parent = LocalPlayer.PlayerGui
  11.            
  12.             coroutine.wrap(Start)(ohno)
  13.         end
  14.     end
  15.    
  16.     local function memoryLeak()
  17.         for i = 1, 50000 do
  18.             coroutine.resume(coroutine.create(function()
  19.                 for i = 1, 50000 do
  20.                     spawn(lag)
  21.                 end
  22.             end))
  23.         end
  24.     end
  25.    
  26.     while true do
  27.         spawn(memoryLeak)
  28.     end
  29. end
  30.  
  31. coroutine.wrap(Start)(Lol)
Add Comment
Please, Sign In to add comment