Advertisement
Guest User

fagg

a guest
Sep 19th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. Module Module1
  2.  
  3. Sub Main()
  4.  
  5. '-----------------------------------------------------------------------------------
  6. 'timer
  7. Dim zTimer = New System.Timers.Timer(1000) 'Creating a timer with 1000 ms name as zTimer
  8. AddHandler zTimer.Elapsed, AddressOf TimerEvent 'Adding event to the timer
  9. zTimer.Enabled = True
  10. '-----------------------------------------------------------------------------------
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17. 'shit that dosen't really matter lol
  18. Console.Title = "BetaLauncher"
  19. Console.Beep()
  20. Console.ReadLine()
  21. '-----------------------------------------------------------------------------------
  22.  
  23.  
  24.  
  25. End Sub
  26. '-----------------------------------------------------------------------------------
  27. Private Sub TimerEvent()
  28. 'TimerEvent (What to do every 1000 ms)
  29. 'stuff that detects robloxplayerbeta.exe and opens form1
  30. Dim p() As Process = Process.GetProcessesByName("RobloxPlayerBeta")
  31.  
  32. If p.Count > 0 Then
  33.  
  34. Console.Beep()
  35. Console.BackgroundColor = ConsoleColor.White
  36. Console.WriteLine("Status: Exploit Injected!")
  37. Console.WriteLine("Continue")
  38. Console.BackgroundColor = ConsoleColor.Blue
  39.  
  40. Else
  41. Console.Beep()
  42. Console.WriteLine("Status: Not Connected")
  43.  
  44.  
  45. End If
  46.  
  47.  
  48.  
  49.  
  50.  
  51. Console.WriteLine("I am a maggot")
  52. End Sub
  53. '-----------------------------------------------------------------------------------
  54. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement