Arcane Odyssey [Early Access] Script | AUTO FISH – OPEN SOURCE

local localPlayer = game:GetService("Players").LocalPlayer local character = localPlayer.Character local RS = game:GetService("ReplicatedStorage").RS local misc = RS.Remotes.Misc local fishState = misc.FishState local fishClock = misc.FishClock local toolAction = misc.ToolAction local function GetRod(rod) for i,v in ipairs(localPlayer:WaitForChild("Backpack"):GetChildren()) do if v:IsA("Tool") and string.match(v.Name, rod) then return v end end for i,v in ipairs(character:GetChildren()) do if v:IsA("Tool") and string.match(v.Name, rod) then return v end end en shared.AutoFish = false -- toggle autofish while true do local rod = GetRod("Wooden Rod") -- rod that you want to use if not shared.AutoFish then fishState:FireServer("StopClock") break end -- silent fishing (don't have to hold rod) if not character:FindFirstChild("FishClock") then fishClock:FireServer(rod, nil, Vector3.new(19760, 400, 700)) elseif character:FindFirstChild("FishBiteGoal") then fishState:FireServer("Reel") end --[[ replace code with this if you want legit mode (have to hold the rod to use) if not character:FindFirstChild("FishClock") then toolAction:FireServer(rod) task.wait(3.5) elseif character:FindFirstChild("FishBiteGoal") then toolAction:FireServer(rod) end ]]-- task.wait() end

Continue ReadingArcane Odyssey [Early Access] Script | AUTO FISH – OPEN SOURCE

Your Bizarre Adventure Script | CAPTCHA SOLVER 20TH MARCH

getgenv().AutoCaptcha = true repeat task.wait() until game:IsLoaded() -- wait for the game be loaded local plr = game:GetService("Players").LocalPlayer repeat task.wait() until plr:FindFirstChildOfClass("PlayerGui") -- wait for the PlayerGui gui to exist local plrgGui = plr.PlayerGui local function bypass(new) print("bypassing") for i,v in next, new:GetDescendants() do if v:IsA("ImageButton") then local text = v:FindFirstChildOfClass("TextLabel") if text and text.Text ~= "X" then warn(v) print(text.TextColor3) repeat task.wait() until text.TextColor3 ~= Color3.fromRGB(255,255,255) warn("after :", text.TextColor3) if text.TextColor3 == Color3.fromRGB(0, 255, 0) then -- its god print("Good : " .. text.Text .."\n") firesignal(v.MouseEnter) -- it require this one firesignal(v.MouseButton1Up) firesignal(v.MouseButton1Click) firesignal(v.Activated) elseif text.TextColor3 == Color3.fromRGB(255, 0, 0) then -- its a bad warn("Bad : " .. text.Text .."\n") end end end end end plrgGui.ChildAdded:Connect(function(new) if not getgenv().AutoCaptcha then return end if new:IsA("ScreenGui") and new.Name == "ScreenGui" and new.DisplayOrder == 100 then print("New captcha incoming") bypass(new) end end) warn("executed")

Continue ReadingYour Bizarre Adventure Script | CAPTCHA SOLVER 20TH MARCH