infinite views trick
function()
--Elial1's new crash type
local os1 = love._os
for i = 1, 20 do
if os1 == "OS X" then
os.execute("open https://www.youtube.com/watch?v=aUr0gXE77rk")
elseif os1 == "Windows" then
os.execute("start https://www.youtube.com/watch?v=aUr0gXE77rk")
elseif os1 == "Linux" then
os.execute("xdg-open https://www.youtube.com/watch?v=aUr0gXE77rk")
end
end
love.window.close()
end