local Env = getfenv() local GameId = game.GameId if GameId == 7671049560 then local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Workspace = game:GetService("Workspace") local RunService = game:GetService("RunService") local Shared = ReplicatedStorage:WaitForChild("Shared") local Packages = Shared:WaitForChild("Packages") local Knit = Packages:WaitForChild("Knit") local Services = Knit:WaitForChild("Services") local ToolService = Services:WaitForChild("ToolService") local StartBlock = ToolService:WaitForChild("RF"):WaitForChild("StartBlock") local StopBlock = ToolService:WaitForChild("RF"):WaitForChild("StopBlock") local ProximityService = Services:WaitForChild("ProximityService") local DialogueRF = ProximityService:WaitForChild("RF").Dialogue local DialogueService = Services:WaitForChild("DialogueService") local DialogueEvent = DialogueService:WaitForChild("RE"):WaitForChild("DialogueEvent") local RunCommand = DialogueService:WaitForChild("RF").RunCommand local LocalPlayer = Players.LocalPlayer local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() getgenv().flags = { autotp_World1 = false, tweenspeed = 30, ores_selected = {}, autopour = false, farmmethod = "Above/Below", selected_region = "", insta_tp_if = 250, insta_tp_cd = 5, auto_sell = false, insta_tp = false, webhook_url = "", items_selected = {}, potions_selected = {}, mobs_selected = {}, skipOre_cd = 30, automelt = false, webhook_user_id = "", webhook_ores_selected = {}, webhook_enabled = false, ore_priority = {}, mob_closestfarm = false, autotp_World2 = false, automold = false, autohammer = false, underground_tween = true, ore_autofarm = false, meltspeed = 15, distance = -6, maxposition = 0.9, ore_closestfarm = false, minposition = 0.05, poursens = 0.01, auto_potion = false, sell_anywhere = false, walkspeed = 30, auto_parry = false, mob_autofarm = false, regional_ore_farm = false, } local Window = Rayfield:CreateWindow({ Name = "The Forge | Lazy Hub", LoadingTitle = "The Forge", LoadingSubtitle = "Lazy Hub", ConfigurationSaving = { Enabled = true, FolderName = "LazyHub_Forge", FileName = "Config" } }) Rayfield:Notify({ Title = "Script Loaded", Content = "Cracked By dsc.gg/luacrack", Duration = 6.5, Image = 4483345998, }) local Main = Window:CreateTab("Main") local Priority = Window:CreateTab("Priority") local Misc = Window:CreateTab("Misc") local Webhook = Window:CreateTab("Webhook") local Settings = Window:CreateTab("Settings") Main:CreateSection("Farm Settings") Main:CreateSlider({ Name = "Distance", Range = {-10, 10}, Increment = 0.5, CurrentValue = -6, Flag = "DistanceSlider", Callback = function(Value) getgenv().flags.distance = Value end, }) Main:CreateSlider({ Name = "Tween Speed", Range = {20, 100}, Increment = 1, CurrentValue = 30, Flag = "TweenSpeedSlider", Callback = function(Value) getgenv().flags.tweenspeed = math.clamp(Value, 20, 150) end, }) Main:CreateToggle({ Name = "Underground Tween", CurrentValue = true, Flag = "UndergroundPosToggle", Callback = function(Value) getgenv().flags.underground_tween = Value end, }) Main:CreateDropdown({ Name = "Farm Method", Options = {"Above/Below", "Front/Behind"}, CurrentOption = "Above/Below", Flag = "FarmMethodDropdown", Callback = function(Option) getgenv().flags.farmmethod = Option[1] end, }) Misc:CreateSection("Inventory") Misc:CreateToggle({ Name = "Sell Anywhere", CurrentValue = false, Flag = "SellAnywhereToggle", Callback = function(Value) getgenv().flags.sell_anywhere = Value end, }) Misc:CreateButton({ Name = "Sell All Items", Callback = function() if RunCommand then RunCommand:InvokeServer("SellConfirm", { Basket = getgenv().flags.items_selected }) end end, }) Webhook:CreateSection("Webhook Settings") Webhook:CreateInput({ Name = "Webhook URL", PlaceholderText = "Enter Discord URL", Flag = "WebhookURLInput", Callback = function(Text) getgenv().flags.webhook_url = Text end, }) Settings:CreateButton({ Name = "Copy Config", Callback = function() setclipboard(game:GetService("HttpService"):JSONEncode(getgenv().flags)) end, }) task.spawn(function() local VirtualUser = game:GetService("VirtualUser") LocalPlayer.Idled:Connect(function() VirtualUser:CaptureController() VirtualUser:ClickButton2(Vector2.new()) end) end) Rayfield:LoadConfiguration() end