--// https://www.roblox.com/games/130526979296684/1-Age-Every-Click \\-- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/PlutomasterAccount/Averus-UI/main/library.lua"))() local window = Library:Create({ Name = "Averus Hub | +1 Age Every Click 👶", }) local mainTab = window:Tab("Main") local mainSection = mainTab:Section("Main") local RS = game:GetService("ReplicatedStorage") local mouseClick = RS:WaitForChild("MouseClicked") local rebirth = RS:WaitForChild("RebirthEvent") local spinReq = RS:WaitForChild("SpinRequest") local spinFolder = RS:WaitForChild("SpinWheelEvents") local age500 = spinFolder:WaitForChild("Age500Event") local coins7500 = spinFolder:WaitForChild("Coins7500Event") local speedCoil = spinFolder:WaitForChild("SpeedCoilEvent") local agex2 = spinFolder:WaitForChild("Agex2Event") local age200 = spinFolder:WaitForChild("Age200Event") local buyMachine = RS:WaitForChild("AgeMachinePurchase") local machines = { "BasicAgeMachine", "DoubleAgeMachine", "GoldAgeMachine", "DiamondAgeMachine", "EmeraldAgeMachine", "MoltenAgeMachine", "RubyAgeMachine", "AmethystAgeMachine", "SapphireAgeMachine", "DoubleMoltenAgeMachine" } local autoAge = false local autoRebirth = false local autoGive500 = false local autoCoins = false local autoSpeedCoil = false local autoX2 = false local auto200 = false local autoBuyMachines = false local delayTime = 0.1 mainSection:Toggle("Auto Age", function(v) autoAge = v end) mainSection:Toggle("Auto Rebirth", function(v) autoRebirth = v end) mainSection:Toggle("Auto Buy Age Machines", function(v) autoBuyMachines = v end) mainSection:Button("Give 200 Age", function() spinReq:FireServer() age200:FireServer() end) mainSection:Button("Give 500 Age", function() spinReq:FireServer() age500:FireServer() end) mainSection:Button("Give 7,500 Coins", function() spinReq:FireServer() coins7500:FireServer() end) mainSection:Button("Give Speed Coil/OP Cash", function() spinReq:FireServer() speedCoil:FireServer() end) mainSection:Button("Give X2 Age Event", function() spinReq:FireServer() agex2:FireServer() end) mainSection:Toggle("Auto Give 200 Age", function(v) auto200 = v end) mainSection:Toggle("Auto Give 500 Age", function(v) autoGive500 = v end) mainSection:Toggle("Auto Give 7,500 Coins", function(v) autoCoins = v end) mainSection:Toggle("Auto Give Speed Coil/OP Cash", function(v) autoSpeedCoil = v end) mainSection:Toggle("Auto Give X2 Age Event", function(v) autoX2 = v end) mainSection:Slider("Delay", 0.01, 1, 0.1, 0.01, function(v) delayTime = v end) task.spawn(function() while task.wait(delayTime) do if autoAge then mouseClick:FireServer() end if autoRebirth then rebirth:FireServer() end if autoGive500 then spinReq:FireServer() age500:FireServer() end if autoCoins then spinReq:FireServer() coins7500:FireServer() end if autoSpeedCoil then spinReq:FireServer() speedCoil:FireServer() end if autoX2 then spinReq:FireServer() agex2:FireServer() end if auto200 then spinReq:FireServer() age200:FireServer() end if autoBuyMachines then for i = 1, #machines do buyMachine:FireServer(machines[i]) end end end end)