Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <Windows.h>
  4. #include <stdarg.h>
  5. #include <stdio.h>
  6.  
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11. string user;
  12. int pass 7;
  13. SetConsoleTitle("Elysian V1.4.5 ALPHA");
  14. cout << "Please enter your username: ";
  15. getline(cin, user);
  16.  
  17. system("cls");
  18. cout << "Welcome: " << user << ", please input your password: ";
  19. cin >> pass;
  20.  
  21. switch (pass);
  22.  
  23. {
  24. case 7:
  25. SetConsoleTitle("Made by kennyS!");
  26. system("cls");
  27. system("Color A");
  28. cout << "Hello, " << user << "Thank you for using Elysian V1.4.5 ALPHA!" << endl;
  29. system("pause");
  30. SetConsoleTitle("Injecting....");
  31. system("cls");
  32. cout << "Injecting into robloxplayer.exe.... please wait....." << endl;
  33. break;
  34. default:
  35.  
  36. system("cls");
  37. system("Color C");
  38. cout << "Error: User not whitelisted :(";
  39. }
  40. system("pause");
  41. return(0);
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement