@weakopps
@samyourbae
Steps to unfollowing everyone:1) Goto your following page:
https://www.imvu.com/next/friends/following/2) Press F12 on keyboard
3) Paste code into the console
const interval = setInterval(function() {
$(".follow-button").children()[0].click();
$(".dialog-footer").children()[1].click();
}, 5000);
4) Press Enter
You will loose 1 following every 5 seconds.
Steps to unfriend everyone:1) Goto your friends page:
https://www.imvu.com/next/friends/2) Press F12 on keyboard
3) Paste code into the console
const interval1 = setInterval(function() {
$(".friend-list-item").children()[0].click();
}, 20000);
const interval2 = setInterval(function() {
$(".action-more-container").children()[0].click();
$(".context-menu").children()[2].click();
$(".dialog-footer").children()[1].click();
$(".dialog-footer").children()[0].click();
$(".dialog-x").children()[0].click();
}, 8000);
4) Press Enter
You will loose 1 friend every 30 seconds ... run it while you sleep, all of your friends should be gone by morning.