View difference between Paste ID: 276F8C9k and sz7WnRSx
SHOW: | | - or go back to the newest paste.
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("Rest in peace.")
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