Advertisement
3ase

macsploit

May 27th, 2024 (edited)
565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.91 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3.     echo -e "Downloading Latest Roblox..."
  4.     [ -f ./RobloxPlayer.zip ] && rm ./RobloxPlayer.zip
  5.     local version=$(curl -s "https://clientsettingscdn.roblox.com/v2/client-version/MacPlayer" | ./jq -r ".clientVersionUpload")
  6.     curl "http://setup.rbxcdn.com/mac/$version-RobloxPlayer.zip" -o "./RobloxPlayer.zip"
  7.     rm ./jq
  8.  
  9.     echo -n "Installing Latest Roblox... "
  10.     [ -d "/Applications/Roblox.app" ] && rm -rf "/Applications/Roblox.app"
  11.     unzip -o -q "./RobloxPlayer.zip"
  12.     mv ./RobloxPlayer.app /Applications/Roblox.app
  13.     rm ./RobloxPlayer.zip
  14.     echo -e "Done."
  15.  
  16.     echo -e "Downloading MacSploit..."
  17.     curl "https://git.abyssdigital.xyz/main/macsploit.zip" -o "./MacSploit.zip"
  18.  
  19.     echo -n "Installing MacSploit... "
  20.     unzip -o -q "./MacSploit.zip"
  21.     echo -e "Done."
  22.  
  23.     echo -n "Updating Dylib..."
  24.     if [ "$version" == "version-88b4e5cd14654499" ]
  25.     then
  26.         curl -Os "https://git.abyssdigital.xyz/preview/macsploit.dylib"
  27.     else
  28.         curl -Os "https://git.abyssdigital.xyz/main/macsploit.dylib"
  29.     fi
  30.    
  31.     echo -e " Done."
  32. echo -e "Patching Roblox..."
  33. mv ./macsploit.dylib "/Applications/Roblox.app/Contents/MacOS/macsploit.dylib"
  34. mv ./libdiscord-rpc.dylib "/Applications/Roblox.app/Contents/MacOS/libdiscord-rpc.dylib"
  35. ./insert_dylib "/Applications/Roblox.app/Contents/MacOS/macsploit.dylib" "/Applications/Roblox.app/Contents/MacOS/RobloxPlayer" --strip-codesig --all-yes
  36. mv "/Applications/Roblox.app/Contents/MacOS/RobloxPlayer_patched" "/Applications/Roblox.app/Contents/MacOS/RobloxPlayer"
  37. rm -r "/Applications/Roblox.app/Contents/MacOS/RobloxPlayerInstaller.app"
  38. rm ./insert_dylib
  39.  
  40. echo -n "Installing MacSploit App... "
  41. [ -d "/Applications/MacSploit.app" ] && rm -rf "/Applications/MacSploit.app"
  42.     mv ./MacSploit.app /Applications/MacSploit.app
  43. rm ./MacSploit.zip
  44. echo -e "Done."
  45.  
  46. echo -e "Install Complete! Developed by Nexus42!"
  47. exit
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement