-- join discord for more open source shit for this game -- https://discord.gg/yKxZ5pZbnC -- UPDATED! local rs = game:GetService("RunService") local g = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("Main").CatchingBar.Frame.Bar.Catch local targets = {g:WaitForChild("Green"), g:WaitForChild("Green"):WaitForChild("DC")} rs.Heartbeat:Connect(function() for _, v in pairs(targets) do if v.Visible then v.Size, v.AnchorPoint, v.BackgroundTransparency = UDim2.new(0.245, 0, 100, 0), Vector2.new(0.5, 0.5), 1 for _, s in pairs(v:GetChildren()) do if s:IsA("UIStroke") then s.Transparency = 1 end end end end end) -- https://discord.gg/yKxZ5pZbnC