local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/UI-Interface/CustomFIeld/main/RayField.lua'))() local Window = Rayfield:CreateWindow({ Name = "Speed legend Auto farm Best op", LoadingTitle = "Speed legend Auto farm Best op", LoadingSubtitle = "by diddler the fiddler", ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "Arrayfield" }, Discord = { Enabled = false, Invite = "sirius", RememberJoins = true }, KeySystem = false, KeySettings = { Title = "Arrayfield", Subtitle = "Key System", Note = "Join the discord (discord.gg/sirius)", FileName = "SiriusKey", SaveKey = false, GrabKeyFromSite = false, Key = "Hello" } }) local Tab = Window:CreateTab("Autofarm", 4483362458) local Section = Tab:CreateSection("Siigma ligma",false) local Toggle = Tab:CreateToggle({ Name = "Auto farm hoops OP Best method", Info = "Tp to all hoops and farm to op", CurrentValue = false, Flag = "Toggle1", Callback = function(Value) if Value then spawn(function() local player = game.Players.LocalPlayer local function getCharacter() if not player.Character then player.CharacterAdded:Wait() end return player.Character end _G.AutoFarmRunning = true while _G.AutoFarmRunning do local character = getCharacter() local hoops = workspace.Hoops:GetChildren() for i = 1, math.min(35, #hoops) do if not _G.AutoFarmRunning then break end if not character or not character.Parent then character = getCharacter() end if i <= #hoops then local hoop = hoops[i] if hoop and hoop:IsA("BasePart") then character:SetPrimaryPartCFrame(CFrame.new( hoop.Position + Vector3.new(0, 5, 0) )) print("Teleported to hoop", i) end end wait(0.01) end if _G.AutoFarmRunning then wait(0.1) end end end) print("Auto farm started") else _G.AutoFarmRunning = false print("Auto farm stopped") end end, }) local Toggle = Tab:CreateToggle({ Name = "Auto Farm orbs/gem Not best method", Info = "Sigma", CurrentValue = false, Flag = "Toggle1", Callback = function(Value) if Value then _G.FastOrbTeleport = true task.spawn(function() local player = game.Players.LocalPlayer while _G.FastOrbTeleport do local character = player.Character if not character then character = player.CharacterAdded:Wait() end local hrp = character:WaitForChild("HumanoidRootPart") if not workspace:FindFirstChild("orbFolder") then warn("orbFolder not found!") task.wait(1) continue end local cityFolder = workspace.orbFolder:FindFirstChild("City") if not cityFolder then warn("City folder not found!") task.wait(1) continue end local children = cityFolder:GetChildren() local maxOrbs = math.min(1000, #children) for i = 1, maxOrbs do if not _G.FastOrbTeleport then break end if not character or not character.Parent then character = player.Character or player.CharacterAdded:Wait() hrp = character:WaitForChild("HumanoidRootPart") end local target = children[i] if target then if target:IsA("Model") and target.PrimaryPart then hrp.CFrame = target.PrimaryPart.CFrame + Vector3.new(0, 5, 0) elseif target:IsA("BasePart") then hrp.CFrame = target.CFrame + Vector3.new(0, 5, 0) end end task.wait(0.01) end if _G.FastOrbTeleport then task.wait(0.001) end end end) else _G.FastOrbTeleport = false end end, })