local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "Gag 2 - Ultimate Hack", HidePremium = false, SaveConfig = true, ConfigFolder = "Gag2Ultimate"}) -- ტაბების შექმნა local FarmTab = Window:MakeTab({Name = "ავტო-ფარმი", Icon = "rbxassetid://4483345998"}) local ShopTab = Window:MakeTab({Name = "მაღაზია & ფეთები", Icon = "rbxassetid://4483345998"}) -- 1. ავტო სიდების აღება (Auto-Farm Seeds) local autoFarm = false FarmTab:AddToggle({ Name = "ავტო-სიდების აღება 🌾", Default = false, Callback = function(Value) autoFarm = Value task.spawn(function() while autoFarm do task.wait(0.1) -- ეძებს სიდებს თამაშში და ატელეპორტირებს შენს პერსონაჟს for _, item in pairs(workspace:GetChildren()) do if item.Name == "Seed" and item:IsA("Tool") then if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = item.Handle.CFrame end end end end end) end }) -- 2. ავტო გაყიდვა (Auto-Sell) local autoSell = false FarmTab:AddToggle({ Name = "ავტო-გაყიდვა 💰", Default = false, Callback = function(Value) autoSell = Value task.spawn(function() while autoSell do task.wait(1) -- ყოველ 1 წამში შეეცდება გაყიდვას -- შენიშვნა: "SellEvent" უნდა ჩაანაცვლო იმ სახელით, რაც თამაშს ქვია დექსში! local remote = game:GetService("ReplicatedStorage"):FindFirstChild("SellEvent", true) if remote and remote:IsA("RemoteEvent") then remote:FireServer() end end end) end }) -- 3. ავტო ყიდვა (Auto-Buy Seeds/Items) local autoBuy = false ShopTab:AddToggle({ Name = "ავტო-სიდების ყიდვა 🛒", Default = false, Callback = function(Value) autoBuy = Value task.spawn(function() while autoBuy do task.wait(1) -- აგზავნის სიგნალს მაღაზიაში საყიდლად local remote = game:GetService("ReplicatedStorage"):FindFirstChild("BuyEvent", true) if remote and remote:IsA("RemoteEvent") then remote:FireServer("Seed", 1) -- ყიდულობს 1 სიდს ავტომატურად end end end) end }) -- 4. ავტო ფეთების ყიდვა (Auto-Buy Pets) local autoPets = false ShopTab:AddToggle({ Name = "ავტო-ფეთების ყიდვა 🐾", Default = false, Callback = function(Value) autoPets = Value task.spawn(function() while autoPets do task.wait(1) -- აგზავნის სიგნალს კვერცხის/ფეთის საყიდლად local remote = game:GetService("ReplicatedStorage"):FindFirstChild("BuyPetEvent", true) if remote and remote:IsA("RemoteEvent") then remote:FireServer("EggName") -- "EggName"-ის ნაცვლად ჩაიწერება კვერცხის სახელი end end end) end }) OrionLib:Init()