Advertisement
PortalPlayer

Fake Exploit

Apr 16th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.36 KB | None | 0 0
  1. @ECHO OFF
  2. title Team LAN Exploit
  3. echo Made by, BaconFlavorHair
  4. pause
  5. goto main
  6.  
  7. :main
  8. cls
  9. echo Please type cmds to see all the commands
  10. set /p answer=cmd:
  11. if %answer%==cmds goto cmds
  12. if %answer%==inject goto inject
  13. if %answer%==ws goto ws
  14. if %answer%==jp goto jp
  15. if %answer%==execute goto execute
  16. if %answer%==close goto close
  17. echo Command does not exist
  18. pause
  19. goto main
  20.  
  21. :cmds
  22. echo The commands are,
  23. echo inject - Injects into roblox
  24. echo ws - Changes your ws
  25. echo jp - Changes your jp
  26. echo execute - Executes scripts
  27. echo close - Closes roblox
  28. pause
  29. goto main
  30.  
  31. :inject
  32. SETLOCAL EnableExtensions
  33. set EXE=RobloxPlayerBeta.exe
  34. FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto FOUND
  35. echo Failed to inject. Roblox is not running.
  36. pause
  37. goto main
  38.  
  39. :injectsuccess
  40. echo Injected.
  41. pause
  42. goto main
  43.  
  44. :ws
  45. echo Please put what you want your ws to be.
  46. set /p answer=ws:
  47. echo Successfully changed ws.
  48. pause
  49. goto main
  50.  
  51. :jp
  52. echo Please put what you want your jp to be.
  53. set /p answer=jp:
  54. echo Successfully changed jp.
  55. pause
  56. goto main
  57.  
  58. :execute
  59. echo Executed script.
  60. pause
  61. goto main
  62.  
  63. :close
  64. echo Are you sure?
  65. set /p answer=answer:
  66. if %answer%==yes goto closeroblox
  67. if %answer%==no goto main
  68. echo Incorrect answer.
  69. pause
  70. goto main
  71.  
  72. :closeroblox
  73. Taskkill /IM RobloxPlayerBeta.exe /F
  74. pause
  75. goto main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement