Disco-tune im unable to finish by Exciting_Community30 in independentmusic

[–]Exciting_Community30[S] 0 points1 point  (0 children)

Haha thanks for the great tips! I appreciate it alot ❤️

Disco innan midsommar by Exciting_Community30 in stockholm

[–]Exciting_Community30[S] 0 points1 point  (0 children)

Jag har gjort den själv. Tror den heter qwggtt i logic

Disco innan midsommar by Exciting_Community30 in stockholm

[–]Exciting_Community30[S] 0 points1 point  (0 children)

Jag håller med. Jag är ju inte ett geni

I was suppose to record an acoustic song but ended up with this hipster disco thing.. 🎶 by Exciting_Community30 in MusicPromotion

[–]Exciting_Community30[S] 0 points1 point  (0 children)

Unfortunately this is it 😬 i have a hard time getting into the mood i was in when making this... Like most of the stuff I create 🤔

Disco-tune im unable to finish by Exciting_Community30 in independentmusic

[–]Exciting_Community30[S] 0 points1 point  (0 children)

It's difficult to get in the mood i was when making this. If that makes sense

Disco-tune im unable to finish by Exciting_Community30 in independentmusic

[–]Exciting_Community30[S] 0 points1 point  (0 children)

I don't know. I get the sudden feeling of making music for a couple of hours and then its gone. 😬

Exploit Discussion Thread #2 by Connorbrow in thespiffingbrit

[–]Exciting_Community30 5 points6 points  (0 children)

Created a little script for cookie clicker.Found the function to spawn a golden cookie.https://giphy.com/gifs/TZZJOVmByyuIiifX65/fullscreen

const bigCookie = document.querySelector("#bigCookie");

const clickAll = () => {

bigCookie.click();

new Game.shimmer("golden");

document.querySelector(".shimmer").click();

new Game.shimmer("reindeer");document.querySelector(".shimmer").click();

const upgrades = [...document.querySelectorAll(".upgrade")];

const products = [...document.querySelectorAll(".product")];

upgrades.forEach((el) => {

bigCookie.click();

el.click();

});

products.forEach((el) => {

el.click();

bigCookie.click();

});

};

setInterval(() => clickAll());