The Fastest Way to Delete Your DISCORD PRIVATE MESSAGES

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ส.ค. 2024
  • The fastest way to delete your Discord Private / Direct messages (PM / DM) using a simple AutoHotkey script.
    Note: I've been informed by a few viewers at this point that this script will not work on conversations that include a call initiated by you, at the moment I don't have a workaround because it's impossible to delete the call event.
    Batch Deleting DMs code: / batch_deleting_dms
    I stream most nights on Twitch: / razinghel
    Join the conversation on my active Discord: / discord
    #Discord #AutoHotkey #Privacy

ความคิดเห็น • 883

  • @kiibo6328
    @kiibo6328 3 ปีที่แล้ว +479

    Girlfriend left me, this helps wonders

    • @overnotes7455
      @overnotes7455 3 ปีที่แล้ว +7

      help me with this pls it wont work for me it just edits the dm then BS then goes slow

    • @Waffler.-
      @Waffler.- 3 ปีที่แล้ว +7

      Same bro

    • @mnbvcx7091
      @mnbvcx7091 3 ปีที่แล้ว +2

      f

    • @sofiaalton2362
      @sofiaalton2362 3 ปีที่แล้ว +2

      f

    • @tanishv2074
      @tanishv2074 3 ปีที่แล้ว +5

      How do we delete the messages sent by our friend?

  • @namsukeichinose
    @namsukeichinose 5 ปีที่แล้ว +699

    I just needa remove my annoying ex. Finally!

  • @anon515
    @anon515 4 ปีที่แล้ว +14

    i found that this script actually works best when you change the sleep from 500 to 150, its much faster and still works

  • @midna370
    @midna370 5 ปีที่แล้ว +30

    Thank you so much. I had someone impersonate me, and I really wanted my information gone so that they would be forced to hopefully forget it overtime! Thanks so much

  • @kerchtrucking
    @kerchtrucking 6 ปีที่แล้ว +79

    Thanks man, for actually making a good, working tutorial.

  • @SylversVolpe
    @SylversVolpe 5 ปีที่แล้ว +85

    For those interested, I updated this script a little bit to make it more practical.
    ----------------------------------------------
    ^j::
    Loop, 1000
    {
    send, {PgUp}
    send, {Up}
    send, ^a
    send, {BS}
    send, {Enter}
    send, {Enter}
    sleep, 100
    }
    Return
    ----------------------------------------------
    I lowered the 500 millisecond break between command executions to 100, it still works, and it is way faster. I changed the loop to 1000 (change it to anything you want). But most importantly, I added a PageUp command. Because if you use the script from the video as is.. it gets stuck after a little while. Because Discord doesn't load the entire conversation history, if it's long. It loads a little bit a t a time, and that breaks this command unless you keep scrolling up with your mouse. So the page up command forces Discord to keep refreshing the history, until it's over.
    Good luck.

    • @purpleoblivion7128
      @purpleoblivion7128 5 ปีที่แล้ว +1

      thanks fam

    • @purpleoblivion7128
      @purpleoblivion7128 5 ปีที่แล้ว +2

      worked perfectly, just wish there were a way to cancel one in progress if I set the number too high without task manager

    • @SylversVolpe
      @SylversVolpe 5 ปีที่แล้ว +1

      @@purpleoblivion7128 Well, you can cancel the script at any point, by right clicking on the AHK icon in the tray, and either clicking pause or exit. You don't have to let it finish on its own.

    • @SylversVolpe
      @SylversVolpe 5 ปีที่แล้ว

      @@purpleoblivion7128 You're very welcome.
      I didn't think I'd need a script like this one, but circumstance dictated that I did.
      So I thought I'd share the edit in case anyone finds themselves in a similar situation.

    • @lukizuku7505
      @lukizuku7505 5 ปีที่แล้ว +1

      I appreciate this so much, thank you. :)

  • @robertkraszewski5782
    @robertkraszewski5782 4 ปีที่แล้ว +33

    Does this make anyone else feel like Hermione at the start of the Deathly Hallows when she uses the obliviate spell on her parents and she fades away from the photographs?

    • @moraxn_4651
      @moraxn_4651 3 ปีที่แล้ว +1

      yes
      i see ur a harry potter fan too

  • @WinnableR
    @WinnableR 4 ปีที่แล้ว +26

    I have edited the script so that it has time to scroll up and also delete the messages , fixed ctrl + a bug
    ^j::
    Loop, 40000
    {
    send, {PgUp}
    sleep, 300
    send, {Up}
    sleep, 50
    send, ^a
    sleep, 200
    send, {BS}
    send, {Enter}
    sleep, 100
    send, {Enter}
    sleep, 100
    }
    Return

    • @somdow
      @somdow 4 ปีที่แล้ว +1

      this worked MUCH better. Thank u for sharing.

    • @insxltedd8018
      @insxltedd8018 4 ปีที่แล้ว +1

      thanks

    • @WinnableR
      @WinnableR 4 ปีที่แล้ว

      @@insxltedd8018 no problem guys

    • @morganatalley731
      @morganatalley731 4 ปีที่แล้ว

      Careful gentlemen, there's a saint among us!

    • @SWUEEMIEytb
      @SWUEEMIEytb 3 ปีที่แล้ว +1

      it just scrolls up without deleting messages

  • @RealDB
    @RealDB 4 ปีที่แล้ว +9

    I updated the script a bit, so it auto scrolls upwords and also fixed the "deleting 1 letter at a time" bug
    ^j::
    Loop, 1000
    {
    send, {Up}
    sleep, 100
    send, ^a
    sleep, 50
    send, {BS}
    sleep, 50
    send, {Enter}
    sleep, 50
    send, {Enter}
    Click, WheelUp
    sleep, 500
    }
    Return
    enjoy

    • @Diviryn
      @Diviryn 4 ปีที่แล้ว

      Thank you so much

  • @jankuchar3807
    @jankuchar3807 4 ปีที่แล้ว +11

    I have 27k messages I want to delete... a good 4 hours of this will do

  • @Ayeooh
    @Ayeooh 4 ปีที่แล้ว +32

    This worked great for me! Thank you so much. I needed to play around with the script a little to make it work correctly. But wouldn't have been able to do it without you

    • @nameherelalab5301
      @nameherelalab5301 2 ปีที่แล้ว

      I know this is a year old comment but mind you share what you did to make it work? Mine shows it’s working but didn’t actually delete any!

    • @Ayeooh
      @Ayeooh 2 ปีที่แล้ว

      @@nameherelalab5301 yeah what's your email, I can send you what I have

  • @okaykoolaid49
    @okaykoolaid49 3 ปีที่แล้ว +21

    WORK-AROUND FOR THE CALL ISSUE:
    Edit the last message you sent before the call and re-initiate the code. It'll continue to delete messages as normal until another call. (It does for me at least.)

  • @JackReap
    @JackReap 5 ปีที่แล้ว +22

    It stopped working after it hit a "user" started a call and it cant delete it

    • @skully3661
      @skully3661 5 ปีที่แล้ว +3

      Same, do you know if there's a work around?

  • @God0fCows
    @God0fCows 2 ปีที่แล้ว +20

    Hey guys, Discord has been updated since this video, here is the up to date script, tested and currently working, upvote so new users can see:
    ^j::
    Loop, 5000
    {
    send, {Up}
    sleep, 500
    send, ^a
    send, {BS}
    send, {Enter}
    send, {Enter}
    sleep, 500
    send, {esc}
    sleep, 500
    }
    Return

    • @TheRisingMiles
      @TheRisingMiles 2 ปีที่แล้ว

      Vouch! This works 🙏

    • @yarakexpress9116
      @yarakexpress9116 2 ปีที่แล้ว

      Sadly it does not work. When i run it, it's stucking on "(My Discordname) has startet a call" Maybe you can help me

  • @Panjax
    @Panjax 4 ปีที่แล้ว +49

    Well I tired it but it's deleted one letter at a time for me? -_-

    • @f0ths
      @f0ths 4 ปีที่แล้ว +13

      yes.
      ^j::
      Loop, 100
      {
      send, {Up}
      sleep, 50
      send, ^a
      send, {BS}
      send, {Enter}
      send, {Enter}
      sleep, 100
      }
      Return
      this will fix it

    • @sjors8508
      @sjors8508 4 ปีที่แล้ว +5

      @@f0ths still did the same thing man...

    • @johnnyhodges3819
      @johnnyhodges3819 4 ปีที่แล้ว +17

      Use the below code. It should solve the issue of deleting lines instead of individual characters. One problem that I cannot get past is if it's a length conversion and it needs to preload old messages this glitches. Trying to figure out a fix. Will edit this when figured out.
      ^j::
      Loop, 10000
      {
      send, {Up}
      send, ^a
      sleep, 150
      send, {BS}
      send, {Enter}
      send, {Enter}
      sleep, 400
      }
      Return

    • @Nobody-br8uf
      @Nobody-br8uf 4 ปีที่แล้ว +3

      @@f0ths it worked for me. Thank you so much!

    • @dickongdonkey3232
      @dickongdonkey3232 4 ปีที่แล้ว

      ​@@f0ths thank you this worked for me. but it periodically starts highlighting lots of messages and stops. unfortunately i thought the script had stopped running when that happened. I looked at a text document of mine and not only did it instantly delete all the text in the document but it automatically saved it too. so warning to anyone else trying this: DO NOT HAVE ANY KIND OF DOCUMENTS OPEN WHILE DOING THIS. IT AUTOMATICALLY SAVES AFTER DELETING EVERYTHING, SO YOU WILL NOT BE ABLE TO RECOVER THAT DOCUMENT!

  • @wyatt9000
    @wyatt9000 5 ปีที่แล้ว +20

    This also works on Windows 7 desktop flawlessly for anyone wondering. This is so helpful! Thanks for sharing!

    • @CookieiscoolOG
      @CookieiscoolOG 3 ปีที่แล้ว

      who has windows 7 in 2019 xD

    • @wyatt9000
      @wyatt9000 3 ปีที่แล้ว +1

      @@CookieiscoolOG uhhh....Me?
      Lol

    • @BigSimp
      @BigSimp 2 หลายเดือนก่อน

      @@CookieiscoolOGwho says xD in 2019

  • @gurkiratsingh8747
    @gurkiratsingh8747 5 ปีที่แล้ว +25

    Update : The script stops if you have ever pinned any messages why, cause the "up" button just simply doesn't work. Also don't try to decrease the sleep time in the script or weird things will happen.
    I followed all the steps properly. Did I had to follow that up command thing as well? Well I did but still nothing is happening now. I pressed crtl+J but nothing.
    Edit : It did worked for me after running the script as administrator. But it didn't work the same way the guy showed in his video, as the sleep time is same. I never saw the delete message in succession, just some flashes but it did the work it supposed to do.
    PS : I don't think you can interrupt the script with keyboard or mouse, until it's over. So used the tray icon to stop/pause it. That's the only way I think.

  • @breakdown7553
    @breakdown7553 5 ปีที่แล้ว +6

    thanks man! For ppl having the problem that it stops deleting before you scroll up -> check for the updated script in the comments where someone added auto scroll and made it faster!!

  • @crossXFaed
    @crossXFaed 4 ปีที่แล้ว +12

    Now all we need is to find a way to remove traces of our tagname from a user.

  • @Roach1776
    @Roach1776 3 ปีที่แล้ว +4

    he only thing i dont like about this is it deletes 5 or 6 messages and goes to the present part of the conversation and slowly scrolls back up and repeats this is there any wy to make it more efficient?

  • @iMrPlenty
    @iMrPlenty 5 ปีที่แล้ว +20

    is there any autohotkey softwares for mac?

  • @RatCZE
    @RatCZE 3 ปีที่แล้ว +8

    Original script did not work for me. So i made few changes and now it works 100% all messages gone after 3000 repeat cycle got finished.
    So if you have problems with today's version try this.
    ^j::
    Loop, 300
    {
    send, {Up}
    send, ^a
    sleep, 70
    send, {BS}
    sleep, 70
    send, {Enter}
    sleep, 70
    send, {Enter}
    send, a
    send, {BS}
    sleep, 600
    }
    Return

    • @Nobody-br8uf
      @Nobody-br8uf 3 ปีที่แล้ว +1

      Thank you so much! I keep coming back every time it has some issues and I always find a comment that has fixed it :D

    • @thesassyunixorn4390
      @thesassyunixorn4390 3 ปีที่แล้ว

      For some reason it keeps only deleting each letter instead of the whole text? Any help with this?

    • @vedant_bansal
      @vedant_bansal 3 ปีที่แล้ว

      @@thesassyunixorn4390 Yeah same issue

    • @LJ.01
      @LJ.01 2 ปีที่แล้ว

      Adding the following to the end of the loop function will allow the user to exit the script by HOLDING the SHIFT key down.
      GetKeyState, state, Shift ;Check if either SHIFT key is held DOWN to exit script
      if (state = "D") {
      Break ;user requested script break loop and end
      }

  • @idayan
    @idayan 5 ปีที่แล้ว +9

    Thanks for the tutorial. Works for me as I didn't have any calls. I don't really remember if manually it's possible to delete a call message. But if you don't have them, this is perfect for you. Thanks again. And liked by me. 🙂

  • @beeclair480
    @beeclair480 4 ปีที่แล้ว +17

    Kinda works for me? But the issue is that it deletes 1 letter at a time and not phrases... so it would take forever

    • @robobaron
      @robobaron 4 ปีที่แล้ว +2

      Had this issue too. I put a "pause, 100" command after each line as it was moving faster than discord could process

    • @angelosediego4658
      @angelosediego4658 4 ปีที่แล้ว

      thats my problem too

    • @awelko
      @awelko 3 ปีที่แล้ว

      @Rubix Cube what device chu on?

  • @monkeymo7213
    @monkeymo7213 3 ปีที่แล้ว +18

    Holy crow this worked, the process wasn’t that difficult and overall good.

    • @FEN_STRT
      @FEN_STRT 2 ปีที่แล้ว

      could u help me im confused at that file part

  • @gabrielelizondo9801
    @gabrielelizondo9801 3 ปีที่แล้ว +5

    How do we make the loop stop if we place an excessive amount of revisions?
    CTRL + J START... AND STOP? :P

  • @dickongdonkey3232
    @dickongdonkey3232 4 ปีที่แล้ว +1

    thank you. i just used a slightly modified version of this script (because it was only deleting one letter at a time otherwise) I had opened a text document while i thought the script wasnt running. then when i went back to discord to continue my deleting, i ran the script again, and even with the document in the background it deleted all the text in that document then automatically saved it. so warning to anyone else trying this: DO NOT HAVE ANY KIND OF DOCUMENTS OPEN WHILE DOING THIS. IT AUTOMATICALLY SAVES AFTER DELETING EVERYTHING, SO YOU WILL NOT BE ABLE TO RECOVER THAT DOCUMENT!

    • @Road-Cam
      @Road-Cam 4 ปีที่แล้ว

      Are you able to paste the script with your edit? i've tried and cannot fix it from deleting letter by letter

    • @f0ths
      @f0ths 4 ปีที่แล้ว +1

      @@Road-Cam
      ^j::
      Loop, 10
      {
      send, {BS}
      send, {PgUp}
      sleep, 150
      send, {Up}
      sleep, 100
      send, ^a
      send, {BS}
      send, {Enter}
      send, {Enter}
      sleep, 150
      }
      Return

  • @Alena-qf9ok
    @Alena-qf9ok 2 ปีที่แล้ว +3

    My way to cope with a break up 💀

  • @AndyMeesProductionss
    @AndyMeesProductionss 5 ปีที่แล้ว +309

    Any fix for getting past calls yet? :) Upvote so uploader might see this.

    • @REXS0L
      @REXS0L 5 ปีที่แล้ว +17

      Soraiko
      2 months ago
      Try scrolling up until it starts deleting again. Just hold down the PAGE UP key. The newer messages will suspend and discord will load the older ones. This won't delete everything, but hopefully the most. After you reached the beginning of the chat, you can hold down the PAGE DOWN key until it starts deleting again. This is how I did it. Hope this helps.

    • @dominik403
      @dominik403 5 ปีที่แล้ว +4

      @@REXS0L thx

    • @robertchshegolskiy644
      @robertchshegolskiy644 5 ปีที่แล้ว +1

      @@REXS0L ty

    • @victornpb
      @victornpb 4 ปีที่แล้ว +18

      For deleting past calls you can use this script github dot com/victornpb/deleteDiscordMessages
      full disclaimer I’m the author

    • @pnxumonic
      @pnxumonic 4 ปีที่แล้ว

      @@victornpb thank you so much

  • @bluetm7045
    @bluetm7045 4 ปีที่แล้ว +9

    The script literally took control of my computer

  • @R_INBee
    @R_INBee 5 ปีที่แล้ว +35

    Thank you for this! It works perfectly for me.

  • @Gakusangi
    @Gakusangi 5 ปีที่แล้ว +5

    It only deletes your messages, not the other person's. So this is most helpful if you've been having a long conversation with yourself.

  • @TheFoxOnStilts
    @TheFoxOnStilts 4 ปีที่แล้ว +4

    after about 10 messages it starts to scroll with the up arrow instead of edit. any fix?

  • @Nikkunemu
    @Nikkunemu 2 ปีที่แล้ว +1

    well i did everything you asked, but the script slowly scrolls up my friends messages to get to mine, and it takes longer than it would if i just manually deleted them.

  • @TheSaiyanSandwich
    @TheSaiyanSandwich 4 ปีที่แล้ว +13

    I'm getting error when I try to delete all messages on discord

  • @jamiekidd5471
    @jamiekidd5471 5 ปีที่แล้ว +23

    While this does work it seems to stop whenever it encounters a pinned message. Might be worth updating with a workaround.

  • @Tree3D
    @Tree3D 3 ปีที่แล้ว +16

    The script is deleting individual characters, then starts bugging out after deleting the first message

    • @ppnda377
      @ppnda377 3 ปีที่แล้ว +3

      i have the same problem

    • @Doomeiner
      @Doomeiner 2 ปีที่แล้ว

      @@ppnda377 reply if you want the solution. I had to code it myself...

    • @averageenjoyer7346
      @averageenjoyer7346 2 ปีที่แล้ว

      @@Doomeiner please give

    • @monnkey9521
      @monnkey9521 2 ปีที่แล้ว

      @@Doomeiner can you give it to me too

    • @AA-gk8uu
      @AA-gk8uu 2 ปีที่แล้ว

      @@Doomeiner me too please

  • @newtperson2143
    @newtperson2143 3 ปีที่แล้ว +2

    Can somebody help? It deletes first message just fine, but after that it selects all of chat, and since I cant delete my friends message it just keep going up, until it comes to my message, and that repeats when my message is deleted. Please help

    • @cowbanana
      @cowbanana 3 ปีที่แล้ว +2

      i had the same issue and looked in the comments and Baithoven wrote a solution to this
      use the code underneath instead of the video's one and it should work
      ^j::
      Loop, 2000
      {
      send, {Up}
      sleep, 300
      send, ^a
      sleep, 300
      send, {BS}
      sleep, 300
      send, {Enter}
      sleep, 300
      send, {Enter}
      sleep, 300
      send, {A}
      sleep, 300
      send, {BS}
      sleep, 300
      }
      Return

    • @newtperson2143
      @newtperson2143 3 ปีที่แล้ว +1

      @@cowbanana Thanks, it works!

    • @CaptainSkylander
      @CaptainSkylander 3 ปีที่แล้ว

      @@cowbanana Helped me out too!

  • @sikid4000
    @sikid4000 4 ปีที่แล้ว +8

    Chrome thinks autohotkey is dangerous and wont let me download. I could just ignore it but I am concerned.

    • @chofe7350
      @chofe7350 3 ปีที่แล้ว +1

      Ur all good i have it and its fine

  • @barackuse
    @barackuse 5 ปีที่แล้ว +27

    Awesome video, fine example on how an instructional video should be made. Intuitive, and informative. You earned a thumbs up! Thanks for taking the time to create this video.

  • @Breadsticks44
    @Breadsticks44 5 ปีที่แล้ว +12

    it stops when it hits ` my disc name `started a call`

  • @CyberEmy
    @CyberEmy 4 ปีที่แล้ว +21

    any update on this? discord changed their interface a little bit and this doesnt work anymore

    • @hphector6
      @hphector6 4 ปีที่แล้ว +2

      you can replace up with pgup it might work

  • @PoutyJinx
    @PoutyJinx 5 ปีที่แล้ว +4

    Only problem is that the calls stop it from deleting

  • @DeadSkyWT
    @DeadSkyWT 4 ปีที่แล้ว +6

    Only. Deleting. My letters. It takes 10 seconds to delete 1 message.

    • @HusXX
      @HusXX 4 ปีที่แล้ว +3

      Loop, 5000
      {
      send, {Up}
      sleep, 100
      send, ^a
      send, {BS}
      send, {Enter}
      send, {Enter}
      send, {Enter}
      send, {BS}
      sleep, 100
      }
      Return

  • @serenity-jt3pm
    @serenity-jt3pm 5 ปีที่แล้ว +11

    How can you make it stop?

  • @coolycoollo
    @coolycoollo 4 ปีที่แล้ว

    Not sure if anyone else is running into this problem, but the script worked for like 2 messages and I left it going because I thought it was working. Obviously not, it only went on for 2 messages ://////

  • @Throneofliesgame
    @Throneofliesgame 5 ปีที่แล้ว +19

    Actual method starts @ 0:55 ;)

  • @lithrun8675
    @lithrun8675 5 ปีที่แล้ว +154

    1, 1, 1, 1 ect ect ect
    Well, the script works... just 100k messages left to go >.>

    • @LiLBrotato
      @LiLBrotato 4 ปีที่แล้ว +5

      what are you ? a printer o_o

    • @HannahWade199
      @HannahWade199 4 ปีที่แล้ว +2

      @@LiLBrotato lol xD

    • @vedforeal7835
      @vedforeal7835 3 ปีที่แล้ว +1

      @@HannahWade199 lol i too have 200 k
      gotta wait 200k times now

  • @BaithovenKEKW
    @BaithovenKEKW 3 ปีที่แล้ว +29

    The Script doesn't work for me because it firstly, has no pause steps in between the actions and secondly does not go back to the texting line after deleting and starts to weirdly marking any message. If you read this message and have similar issues try using the following code instead. It basically puts a pause between every action and hits the "A" key and deletes it afterwards in order to get back to the texting line.
    ^j::
    Loop, 2000
    {
    send, {Up}
    sleep, 300
    send, ^a
    sleep, 300
    send, {BS}
    sleep, 300
    send, {Enter}
    sleep, 300
    send, {Enter}
    sleep, 300
    send, {A}
    sleep, 300
    send, {BS}
    sleep, 300
    }
    Return

  • @sandmanoh85
    @sandmanoh85 5 ปีที่แล้ว +8

    thanks so much for explaining the commands too. nice dude. im assuming this also works with discord channels as well

  • @cw7147
    @cw7147 4 ปีที่แล้ว +4

    This is only deleting one character at a time instead of the whole message. Is there anyway to fix this?

    • @f0ths
      @f0ths 4 ปีที่แล้ว +2

      yes.
      ^j::
      Loop, 100
      {
      send, {Up}
      sleep, 50
      send, ^a
      send, {BS}
      send, {Enter}
      send, {Enter}
      sleep, 100
      }
      Return
      this will fix it

    • @cw7147
      @cw7147 4 ปีที่แล้ว

      @@f0ths tysm that worked!

    • @mikephone616
      @mikephone616 4 ปีที่แล้ว

      @@f0ths This works unless it encounters a message that it cant delete, like 'started a call' it seems to get stuck there

    • @f0ths
      @f0ths 4 ปีที่แล้ว

      @@mikephone616 true. i personally used a different script the first and only time i used it and the script managed to skip the section of the call(only leaving 2 or 3 message lines after) and continued deleting. I will try to improve this script though. Thanks for telling me

  • @DaezyFlowers
    @DaezyFlowers 5 ปีที่แล้ว +24

    This actually works! thx man

  • @BaebiDoll
    @BaebiDoll 3 ปีที่แล้ว +2

    if you are in a situation where they unfriend you, not blocked you, and you still have their old DM,
    will the chat still remain for them after you delete it?

  • @Slipstream_fe1
    @Slipstream_fe1 4 ปีที่แล้ว +7

    it only clears the messages letter to letter for me how do i fix that

    • @f0ths
      @f0ths 4 ปีที่แล้ว

      ^j::
      Loop, 10
      {
      send, {BS}
      send, {PgUp}
      sleep, 150
      send, {Up}
      sleep, 100
      send, ^a
      send, {BS}
      send, {Enter}
      send, {Enter}
      sleep, 150
      }
      Return

    • @DarlingX
      @DarlingX 4 ปีที่แล้ว

      @@f0ths when it does send,^a. You can simply do sleep, 100 underneath that and it works fine.

  • @RonaldBVB
    @RonaldBVB 4 ปีที่แล้ว +4

    whats not working for me is that it doesnt select the whole message, it deletes letter by letter. any ideas on how to fix that ?

    • @James-jp7vx
      @James-jp7vx 4 ปีที่แล้ว

      Same

    • @pissgoat
      @pissgoat 4 ปีที่แล้ว +2

      add sleep, 100 between every command

    • @theSato
      @theSato 4 ปีที่แล้ว

      Are you in Windows? It won't work on Mac or other operating systems where CTRL+A doesn't select all text.

  • @dragon_-lf2ju
    @dragon_-lf2ju 4 ปีที่แล้ว +1

    Yeah uh how do I make it stop though because it's not letting me stop it

  • @MuslimOrthodox
    @MuslimOrthodox 3 ปีที่แล้ว +10

    tbh 80% come here just to delete they convo to forget his/her ex 😂😂 hahaha (same :

  • @logjitzu
    @logjitzu 2 ปีที่แล้ว +2

    whenever i use the script, it will delete one message then reset all the way to the bottom of the messages, highlighting each one with a blue box as it slowly goes through each one until it gets to one my messages again. anyone have any idea how to fix this?

  • @ThePaulP
    @ThePaulP 4 ปีที่แล้ว +2

    What is an alternative to ^a to select all? That script is only deleting one letter at a time

  • @pissgoat
    @pissgoat 4 ปีที่แล้ว +4

    i found a fix when it only deletes one letter, between every code you have to add sleep, 100

    • @skatingshavocado7534
      @skatingshavocado7534 4 ปีที่แล้ว

      OMG THANK YOUU

    • @rikellmefreitasneves7080
      @rikellmefreitasneves7080 4 ปีที่แล้ว

      I dont understand, u can send the script?

    • @Hibee
      @Hibee 4 ปีที่แล้ว +1

      @@rikellmefreitasneves7080 ^j::
      Loop, 100
      {
      send, {Up}
      sleep, 100
      send, ^a
      sleep, 100
      send, {BS}
      sleep, 100
      send, {Enter}
      sleep, 100
      send, {Enter}
      sleep, 500
      }
      Return

    • @xd6445
      @xd6445 4 ปีที่แล้ว

      @@Hibee tysm!

  • @krabynaby123
    @krabynaby123 4 ปีที่แล้ว +3

    Today is the 8th of March, 2020, and for some reason when I use this script it deletes the messages letter by letter instead of deleting the whole message.

    • @Omar-rr6bu
      @Omar-rr6bu 4 ปีที่แล้ว

      same

    • @f0ths
      @f0ths 4 ปีที่แล้ว

      ^j::
      Loop, 10
      {
      send, {BS}
      send, {PgUp}
      sleep, 150
      send, {Up}
      sleep, 100
      send, ^a
      send, {BS}
      send, {Enter}
      send, {Enter}
      sleep, 150
      }
      Return

  • @waryth4475
    @waryth4475 5 ปีที่แล้ว +1

    Its not working for me either.. It has something to do with the script itself. Anyone else got it to working as of date? If so let me know.

  • @kioku119
    @kioku119 3 ปีที่แล้ว +1

    It's not working at all. It's deleting a few characters, canceling and doing that again. It's not successfully deleting any message. On browser it backs you out of discord. On desktop app it spins in place as I described and fails to get anything done.
    edit:
    Major Skies has a post bellow that somewhat fixes it! You need short sleeps between each input or it messes up. It still does some of the times but does much better!

  • @foco5789
    @foco5789 5 ปีที่แล้ว +2

    can some1 help me how to you get to that folder omg

  • @MapleInu
    @MapleInu 4 ปีที่แล้ว +1

    This used to work really well, but hasn't since a month or two ago. It gets stuck trying to delete messages, just flickering on the most recent one. Sometimes it will delete the message if you wait, but it can be a long wait. I didn't change a thing about the script, no I'm not sure what the issue is.

    • @Charlie-zf1rj
      @Charlie-zf1rj 4 ปีที่แล้ว

      I found a solution. Press Ctrl + J and then hold the up arrow button.

  • @Throneofliesgame
    @Throneofliesgame 5 ปีที่แล้ว +1

    you can only scroll the current 'chunk' with UP. You need a page up somewhere in there.

  • @madisonphipps9741
    @madisonphipps9741 5 ปีที่แล้ว +1

    is it just me or does this not work. ive tried everything and followed the tutorial many times but whenever i use the script it only deletes text. any images, links, calls, etc cause the script to stop working. this is really annoying because the dm i need to delete has a lot of them

  • @lovasucka9678
    @lovasucka9678 4 ปีที่แล้ว +1

    The only thing that actually worked! Thanks bro!

  • @patatesaptalidl8777
    @patatesaptalidl8777 4 ปีที่แล้ว +4

    for some reason the ^a doesnt work and instead of entire messages it just deletes a single character every time...

    • @fraudz7957
      @fraudz7957 4 ปีที่แล้ว

      Re try the script or delete it, the re past, you might be putting a to high of a number for the script to handle on your laptop via pc,

    • @patatesaptalidl8777
      @patatesaptalidl8777 4 ปีที่แล้ว

      @@fraudz7957 no, like I said the ^a is where it gets stuck on
      it just skips that line

    • @theSato
      @theSato 4 ปีที่แล้ว +1

      Are you in Windows? It won't work on Mac or other operating systems where CTRL+A doesn't select all text.

    • @alphachad7556
      @alphachad7556 4 ปีที่แล้ว

      If you add sleep 300 after control it works

    • @HusXX
      @HusXX 4 ปีที่แล้ว

      Loop, 5000
      {
      send, {Up}
      sleep, 100
      send, ^a
      send, {BS}
      send, {Enter}
      send, {Enter}
      send, {Enter}
      send, {BS}
      sleep, 100
      }
      Return

  • @Nachteule96
    @Nachteule96 4 ปีที่แล้ว +1

    99% of the messages/calls on mine have no 'delete' button on them... What do I do to get rid of those?

  • @miinakins9276
    @miinakins9276 4 ปีที่แล้ว +2

    Whenever i try to run the script and do ctrl + j it selects everything and doesnt delete the messages. How can i prevent it from selecting everything?

    • @spiniho
      @spiniho 4 ปีที่แล้ว +1

      Hey, try this script. I had the same problem so I have added a few pauses between key presses. It is still not 100% perfect, but it will delete the messages.
      ^j::
      Loop, 100
      {
      send, {Up}
      sleep, 50
      send, ^a
      sleep, 10
      send, {BS}
      sleep, 10
      send, {Enter}
      sleep, 10
      send, {Enter}
      sleep, 500
      }
      Return

    • @polar9129
      @polar9129 4 ปีที่แล้ว

      @@spinihothanks man you safe my day you are legend :)

  • @katsup606
    @katsup606 5 ปีที่แล้ว +5

    I can't find the archive to put the scripts in : /

    • @Lemons9999
      @Lemons9999 3 ปีที่แล้ว

      Did you find it?

  • @majorskies7091
    @majorskies7091 4 ปีที่แล้ว +15

    Try this instead! I've added the 'esc' button to work as a pause/start button once you hit Ctrl+J too! If sleep 35 is going too fast/not working, change all the 35s to 75!
    ^j::
    Loop, 100
    {
    send, {Up}
    sleep, 35
    send, ^a
    sleep, 35
    send, {BS}
    sleep, 35
    send, {Enter}
    sleep, 35
    send, {Enter}
    sleep, 150
    }
    Return
    esc::
    Pause
    Suspend
    return

    • @kevinbrakhage87
      @kevinbrakhage87 4 ปีที่แล้ว

      I thought I had to leave it over night completely and stop using my laptop but this is amazing, thank you for sharing it.

    • @majorskies7091
      @majorskies7091 4 ปีที่แล้ว +1

      @@kevinbrakhage87 aww no worries 🧡

    • @kaos7599
      @kaos7599 4 ปีที่แล้ว +2

      thnx so much i had to restart my pc to make it stop
      but this works

    • @majorskies7091
      @majorskies7091 4 ปีที่แล้ว

      @@kaos7599 no problem 🧡

    • @angelosediego4658
      @angelosediego4658 4 ปีที่แล้ว

      this works but it only deleted the one that i have sent not the one that i have recieved please help :(

  • @user-vq5cw4ve3n
    @user-vq5cw4ve3n 3 ปีที่แล้ว +1

    It’s a bit slow since it goes up all their messages but it works

  • @frankiek_1
    @frankiek_1 3 ปีที่แล้ว +4

    But wait, what if you don’t want to delete the most recent messages. Like for example say there are 50 messages, and you want to delete the 20 in the middle, can you delete just those or do you have to delete those plus everything after?

    • @KicksandGiggles4
      @KicksandGiggles4 ปีที่แล้ว

      I'm new to discord but it seems like you should be able to "edit" the last message in the block of 20 and then start the script. It doesn't seem to care where you are when you start it.

  • @yourlocaldogboy
    @yourlocaldogboy ปีที่แล้ว +2

    i think i speak for all the criminals in here (including me) when i say, thanks a lot.

    • @OneGuyIKnow
      @OneGuyIKnow ปีที่แล้ว +3

      I feel hella guilty for what I did, but I need to move forward, godspeed on your journey friend

    • @yourlocaldogboy
      @yourlocaldogboy ปีที่แล้ว +1

      @@OneGuyIKnow i didn't personally *do* anything, i got a buncha things done to me, but i do admit a lot of the shit i did was pretty stupid and contributed to it. right now i just wanna take away their chance to do it again and uh... move on, just like you.
      I still understand what you're going through though, I'm glad you're trying to move on too, and just know; you're a good person, you regret your actions, and that's all that matters. Best of luck to you, friend, and i hope you're able to move forward, you deserve it.

    • @OneGuyIKnow
      @OneGuyIKnow ปีที่แล้ว +2

      @@yourlocaldogboy Thank you, brother. We can only be better to ourselves to be better to those around us

  • @skullpants
    @skullpants 5 ปีที่แล้ว +2

    It's not working past calls. Is there a way to fix this?

  • @robsonyoutubenotinuse9497
    @robsonyoutubenotinuse9497 4 ปีที่แล้ว +2

    this stopped working for me 2 days ago

  • @wysiwygbg
    @wysiwygbg 4 ปีที่แล้ว +4

    The script almost works, but it's missing lines which actually gets it to work, it should be like that, if it doesn't include the line that represent presing the Tab button and the lines that gives the script time to react, it's not working for me ..
    ^j::
    Loop, 100
    {
    send, {Up}
    sleep, 200
    send, ^a
    sleep, 200
    send, {BS}
    sleep, 200
    send, {Enter}
    sleep, 200
    send, {Enter}
    sleep, 500
    send, {Tab}
    }
    Return

    • @grandmoffgigi
      @grandmoffgigi 4 ปีที่แล้ว

      how do you stop it and do you have a way that would make it so i dont have to keep scrolling

    • @wysiwygbg
      @wysiwygbg 4 ปีที่แล้ว

      @@grandmoffgigi I stop it manually by exiting the script from the tray icon. I haven't found a way for now how to make it scroll on its own, I don't know if that would be possible, because the quantity of messages differs every time.

  • @Opianyx
    @Opianyx 5 ปีที่แล้ว +2

    I kept getting sent dps so I'm glad I watched this

  • @zaidjarrar4453
    @zaidjarrar4453 2 ปีที่แล้ว +1

    this script only select your messages, note to be taken,
    make sure your mouse cursor is pointing at the messages bar and then you can run it
    tap esc to exit
    tap ctrl + l to pause
    and finally ctrl + j to start it
    Escape::
    ExitApp
    Return
    ^l::Pause
    ^j::
    Loop
    {
    send, {Up}
    send, ^a
    send, {BS}
    send, {Enter}
    send, {Enter}
    sleep, 1000
    MouseClick
    send, {WheelUp}
    }
    return

  • @Name-yv2zq
    @Name-yv2zq 5 ปีที่แล้ว +16

    what about on mobile :(

  • @aluminiumiodide
    @aluminiumiodide 2 ปีที่แล้ว +1

    provide a link to the download bruh its not working

  • @hbkhudas
    @hbkhudas 5 ปีที่แล้ว +3

    any update on how to delete call history?

  • @Lilith-zf3of
    @Lilith-zf3of 5 ปีที่แล้ว +5

    don't have the script and steam open at the same time, you'll probably get a fat vac

  • @activatemuffin
    @activatemuffin 3 ปีที่แล้ว

    Razing Hell:
    The Fastest Way to Delete Your DISCORD PRIVATE MESSAGES
    The game under his description:
    *legacy of discord-furiouswings*

  • @categorize6954
    @categorize6954 4 ปีที่แล้ว +6

    So, everything works except the up button. I have to hold the up button to get them cleared. Any fixes on that?

  • @offnodope3123
    @offnodope3123 3 ปีที่แล้ว

    this is working as of 7/15/2021. as long as you follow the directions. now i wanna learn how to code fr LOL thanks a lot mate. cheers

  • @davidkennedy8281
    @davidkennedy8281 2 ปีที่แล้ว +1

    No longer works, sadly. It deletes one, then highlights everything and just sits there.

  • @eugenefun4854
    @eugenefun4854 4 ปีที่แล้ว +1

    PLS HELP, my backspace doesn't works :(

  • @jmac4978
    @jmac4978 4 ปีที่แล้ว +1

    didnt work initially. I had to disable the game overlay feature in settings and run script in admin for it to work

  • @Tonyscarface04
    @Tonyscarface04 4 ปีที่แล้ว

    YOU HAVE NO CLUE HOW MUCH THIS HELPED ME

  • @Ikramrockstar
    @Ikramrockstar 5 ปีที่แล้ว +4

    Incredible. Thank you so much. Very appreciated

  • @venthari5755
    @venthari5755 4 ปีที่แล้ว +1

    So when I run the script, it doesnt seem to be doing the ^a, causeits just deleting one letter at a time.. any ideas?

  • @Blaq_Phantom
    @Blaq_Phantom 2 ปีที่แล้ว +1

    This worked wonders. Thank you so much.

  • @vanilliqs9303
    @vanilliqs9303 4 ปีที่แล้ว +1

    It's only deleting one letter at a time though, how do I delete full messages?

  • @locks2773
    @locks2773 4 ปีที่แล้ว +1

    I’m not sure is this is true, but I’m pretty sure this can get you banned for spamming the API

  • @amrbaitsaid
    @amrbaitsaid 3 ปีที่แล้ว +2

    Thanks my time saved cuz of you ❤

  • @markgilbert9883
    @markgilbert9883 4 ปีที่แล้ว +1

    I know you can hit the x to delete the dm tab on desktop, but how do you do that on mobile

  • @felix5734
    @felix5734 2 ปีที่แล้ว +1

    Thanks man, this worked wonders.