1loadstring(game:HttpGet("https://raw.githubusercontent.com/femmehomme90-web/scripts/refs/heads/main/BeeGarden"))()23its open source so you can go to the raw and see the code if you want.456789local VoidUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/femmehomme90-web/VoidUI/refs/heads/main/voidUI.lua"))()10local Players = game:GetService("Players")11local player = Players.LocalPlayer12local ReplicatedStorage = game:GetService("ReplicatedStorage")13local purchaseRemote = ReplicatedStorage.Events.PurchaseConveyorEgg14local claimCoinsRemote = ReplicatedStorage.Events.ClaimCoins151617local iconList = player.PlayerGui.Main.Frames.Conveyor.ConveyorInfo.InfoFrame.List18local Window = VoidUI:CreateWindow({19 Title = "Bee Script",20 Size = UDim2.new(0, 520, 0, 460),21})22local Tab = Window:AddTab("Eggs")23local TabFarm = Window:AddTab("Farm")2425local selectedEggs = {}2627local function getItems()28 local items = {}29 for _, frame in ipairs(iconList:GetChildren()) do30 if frame:IsA("Frame") and frame.Name ~= "Template" then31 local icon = frame:FindFirstChild("Icon", true)32 table.insert(items, {33 Name = frame.Name,34 Icon = icon and icon.Image or "",35 })36 end37 end38 return items39end4041local function refresh()42 selectedEggs = {}43 Tab:Clear()44 Tab:AddLabel("Oeufs disponibles")45 Tab:AddCardGrid({46 Items = getItems(),47 Columns = 3,48 Callback = function(selected)49 selectedEggs = selected50 end,51 })52 Tab:AddButton({53 Label = "ACTUALISER",54 Colors = { Color3.fromRGB(130, 80, 255), Color3.fromRGB(220, 80, 160) },55 Callback = function()56 refresh()57 VoidUI:Notify({58 Title = "Bee Script",59 Message = "Liste des oeufs mise a jour !",60 Type = "info",61 Duration = 2,62 })63 end,64 })65end66refresh()676869local plots = workspace.Core.Scriptable.Plots70local playerPlot = nil71local playerPlotId = nil7273for i = 1, 5 do74 local plot = plots[tostring(i)]75 if plot then76 local honeyPot = plot:FindFirstChild("HoneyPot")77 if honeyPot then78 if honeyPot:GetAttribute("OwnerName") == player.Name then79 playerPlot = plot80 playerPlotId = tostring(i)81 break82 end83 end84 end85end8687if not playerPlot then88 print("Aucun plot trouve.")89 return90end919293local eggs = playerPlot:FindFirstChild("Eggs")94if not eggs then95 print("Pas de dossier Eggs.")96 return97end9899local function tryBuyEgg(egg)100 local baseName = egg:GetAttribute("baseName")101 if baseName and selectedEggs[baseName] then102 task.wait(math.random(5, 10) / 10)103 purchaseRemote:FireServer(egg.Name, playerPlotId)104 print("Achete : " .. baseName)105 end106end107108for _, egg in ipairs(eggs:GetChildren()) do109 task.spawn(function() tryBuyEgg(egg) end)110end111112eggs.ChildAdded:Connect(function(egg)113 task.spawn(function() tryBuyEgg(egg) end)114end)115116117local autoClaimEnabled = false118local claimInterval = 20119local nextClaimIn = 0120121TabFarm:AddLabel("Claim Coins")122123local toggleClaim = TabFarm:AddToggle({124 Label = "Auto Claim Coins",125 Default = false,126 Callback = function(v)127 autoClaimEnabled = v128 VoidUI:Notify({129 Title = "Auto Claim",130 Message = v and "Claim automatique activé (/" .. claimInterval .. "s)" or "Claim automatique désactivé",131 Type = v and "success" or "warning",132 Duration = 2,133 })134 end,135})136137local sliderInterval = TabFarm:AddSlider({138 Label = "Intervalle",139 Min = 10,140 Max = 60,141 Default = 20,142 Suffix = "s",143 Callback = function(v)144 claimInterval = v145 end,146})147148local progressClaim = TabFarm:AddProgressBar({149 Label = "Prochain claim",150 Value = 20,151 Max = 20,152 Suffix = "s",153})154155TabFarm:AddButton({156 Label = "Claim maintenant",157 Colors = { Color3.fromRGB(130, 80, 255), Color3.fromRGB(220, 80, 160) },158 Callback = function()159 claimCoinsRemote:FireServer("Collect_Coins")160 nextClaimIn = claimInterval161 VoidUI:Notify({162 Title = "Claim Coins",163 Message = "Coins réclamés manuellement !",164 Type = "success",165 Duration = 2,166 })167 end,168})169170171task.spawn(function()172 nextClaimIn = claimInterval173 while true do174 task.wait(1)175 if autoClaimEnabled then176 nextClaimIn = nextClaimIn - 1177 progressClaim:SetValue(math.max(nextClaimIn, 0))178179 if nextClaimIn <= 0 then180 claimCoinsRemote:FireServer("Collect_Coins")181 nextClaimIn = claimInterval182 progressClaim:SetValue(claimInterval)183 VoidUI:Notify({184 Title = "Claim Coins",185 Message = "Coins réclamés automatiquement !",186 Type = "success",187 Duration = 2,188 })189 end190 else191 192 nextClaimIn = claimInterval193 progressClaim:SetValue(claimInterval)194 end195 end196end)197198199VoidUI:Notify({200 Title = "Bee Script",201 Message = "Auto-buy actif sur le plot " .. playerPlotId,202 Type = "success",203 Duration = 3,204})
Comments · …
Loading comments…