I need help with a code that is supposed to mass delete Discord messages as soon as possible.
So, just to make this short. I need to mass delete discord messages because something is ruining my life. I need help with trying to make this work. I'm sorry if I sound stupid, but I honestly don't know what I'm doing. It's been a while since the last time I tried and I'm not good with coding.
I followed what this post said to do, so I downloaded AutoHotkey1000.exe, copy and pasted the code below into the notepad, changed the loop to 10000 because I saw someone else say that it worked when they did it, and went to the DMs and ran the script.
```
^d::
Loop, 100
{
send, {Space}
sleep, 100
send, {BS}
send, {Up}
sleep, 200
send, ^a
sleep, 100
send, {BS}
sleep, 200
send, {Enter}
sleep, 100
send, {Enter}
sleep, 1000
}
Return
```
The problem is that I wait for the page to load a little bit before running the code. But the only thing that happens is that it highlighted my messages, but never deletes them. I'm not sure on what to do sense I don't know how coding works and stuff.
Again, I'm sorry if I sound stupid or if this isn't allowed. I'm just really desperate right now and I don't know what to do. Please Help.
P.S - I'm sorry if the code isn't formatted properly. I'm on mobile and I couldn't find the code block option, not could I figure out a way to do it on mobile.
Additional Info if it helps: I'm trying to do this on my HP Laptop that has Windows 10.