Royal High Script | CAPTCHA SOLVER

Created by Kaid

Features:

  • CAPTCHA SOLVER

Steps to use in unison with the above script (Can just be run standalone if you use a different farm):
1. In the script’s settings variables disable “bypassCaptcha”
2. Paste the new script at the top of the script, or run them seperately, up to you. (If you’re more technical, you could even replace the old solver’s code with the new one, this would be the best option!)

local plr = game:GetService("Players").LocalPlayer
if not firesignal then plr:Kick("Does not support this captcha solver ~Kaid#0001") end

plr.PlayerGui.CaptchaGui:GetPropertyChangedSignal("Enabled"):Connect(function()
   if plr.PlayerGui.CaptchaGui.Enabled then
       for i,v in pairs(plr.PlayerGui.CaptchaGui.Captcha.FloatArea:GetChildren()) do
           local absolute = v.AbsoluteSize.X
           task.wait(.25)
           if absolute ~= v.AbsoluteSize.X then
               firesignal(v.MouseButton1Down)
               task.wait()
               firesignal(v.MouseButton1Click)
               task.wait(.01)
           end
       end
       task.wait(.25)
       firesignal(plr.PlayerGui.CaptchaGui.Award.Close.MouseButton1Down)
       task.wait()
       firesignal(plr.PlayerGui.CaptchaGui.Award.Close.MouseButton1Click)
   end
end)

if plr.PlayerGui.CaptchaGui.Enabled then
   for i,v in pairs(plr.PlayerGui.CaptchaGui.Captcha.FloatArea:GetChildren()) do
       local absolute = v.AbsoluteSize.X
       task.wait(.25)
       if absolute ~= v.AbsoluteSize.X then
           firesignal(v.MouseButton1Down)
           task.wait()
           firesignal(v.MouseButton1Click)
           task.wait(.01)
       end
   end
   task.wait(.25)
   firesignal(plr.PlayerGui.CaptchaGui.Award.Close.MouseButton1Down)
   task.wait()
   firesignal(plr.PlayerGui.CaptchaGui.Award.Close.MouseButton1Click)
end