how to delete all messages at once in discord code example

Example: how to delete multiple messages on discord

(ONLY WORKS ON THE DISCORD APP!!)

1. Download AHK (Auto hot key)

2. Make a new AHK script 

3. delete ALL the text in the script

4. Copy and paste the code below into the script: (Change the line "Loop, 100" to how many words you want the AHK script to delete)

t::

Loop, 100

{

send, a

sleep, 100

send, ^a

sleep, 100

send, {BS}

sleep, 100

send, {Up}

sleep, 100

send, ^a

sleep, 100

send, {BS}

sleep, 100

send, {Enter}

sleep, 100

send, {Enter}

sleep, 100

}

Return

5. Save the AHK script

6. Run the AHK script

7. Press "a"

8. Then press "t"

9. Done!