Advertisement
Lulz-Tigre

whatsapp_ddos

Jul 6th, 2016
1,010
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ' InputBoxes
  2. Contact = InputBox("Which Conctact Do You Want To DDos?", "WhatsApp DDos")
  3. Message = InputBox("What Is The Message?","WhatsApp DDos")
  4. T = InputBox("How Many Times Needs It To Be Send?","WhatsApp DDos")
  5. If MsgBox("You've Filled It In Correctely", 1024 + vbSystemModal, "WhatsApp DDos") = vbOk Then
  6.  
  7. ' Go To WhatsApp
  8. Set WshShell = WScript.CreateObject("WScript.Shell")
  9. Return = WshShell.Run("https://web.whatsapp.com/", 1)
  10.  
  11. ' Loading Time
  12.  
  13. If MsgBox("Is WhatsApp Loaded?" & vbNewLine & vbNewLine & "Press No To Cancel", vbYesNo + vbQuestion + vbSystemModal, "WhatsApp DDos") = vbYes Then
  14.  
  15. ' Go To The WhatsApp Search Bar
  16. WScript.Sleep 50
  17. WshShell.SendKeys "{TAB}"
  18.  
  19. ' Go To The Contacts Chat
  20. WScript.Sleep 50
  21. WshShell.SendKeys Contact
  22. WScript.Sleep 50
  23. WshShell.SendKeys "{ENTER}"
  24.  
  25. ' The Loop For The Messages
  26. For i = 0 to T
  27. WScript.Sleep 5
  28. WshShell.SendKeys Message
  29. WScript.Sleep 5
  30. WshShell.SendKeys "{ENTER}"
  31. Next
  32.  
  33. ' End Of The Script
  34. WScript.Sleep 3000
  35. MsgBox "DDosing Of " + Contact + " Is Done", 1024 + vbSystemModal, "DDos Is Done"
  36.  
  37. ' Canceled Script
  38. Else
  39. MsgBox "Process Has Been Canceled", vbSystemModal, "DDos Canceled"
  40. End If
  41. Else
  42. End If
  43.  Desktop version
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement