-- Gui to Lua -- Version: 3.2 -- Instances: local DonutBakery = Instance.new("ScreenGui") local DonutBakeryLife = Instance.new("Frame") local InfWheat = Instance.new("TextButton") local InfWood = Instance.new("TextButton") local InfIron = Instance.new("TextButton") local DonutBakeryGui = Instance.new("TextLabel") local InfMoney = Instance.new("TextButton") local AutoRebirth = Instance.new("TextButton") local Close = Instance.new("TextButton") local Open = Instance.new("Frame") local OpenGui = Instance.new("TextButton") --Properties: DonutBakery.Name = "Donut Bakery" DonutBakery.Parent = game.CoreGui DonutBakeryLife.Name = "Donut Bakery Life" DonutBakeryLife.Parent = DonutBakery DonutBakeryLife.BackgroundColor3 = Color3.fromRGB(0, 0, 0) DonutBakeryLife.BackgroundTransparency = 0.500 DonutBakeryLife.Position = UDim2.new(0.296183199, 0, 0.40239045, 0) DonutBakeryLife.Size = UDim2.new(0, 267, 0, 192) DonutBakeryLife.Visible = false DonutBakeryLife.Active = true DonutBakeryLife.Draggable = false InfWheat.Name = "Inf Wheat" InfWheat.Parent = DonutBakeryLife InfWheat.BackgroundColor3 = Color3.fromRGB(0, 0, 0) InfWheat.BackgroundTransparency = 0.500 InfWheat.Position = UDim2.new(0, 0, 0.183235869, 0) InfWheat.Size = UDim2.new(0, 120, 0, 31) InfWheat.Font = Enum.Font.SourceSans InfWheat.Text = "InfWheat" InfWheat.TextColor3 = Color3.fromRGB(0, 0, 0) InfWheat.TextSize = 14.000 InfWheat.MouseButton1Down:Connect(function() game.Workspace.DiamondStoreEvents.AddMoney:FireServer(math.huge,"Wheat") end) InfWood.Name = "Inf Wood" InfWood.Parent = DonutBakeryLife InfWood.BackgroundColor3 = Color3.fromRGB(0, 0, 0) InfWood.BackgroundTransparency = 0.500 InfWood.Position = UDim2.new(0.550561786, 0, 0.183235869, 0) InfWood.Size = UDim2.new(0, 120, 0, 31) InfWood.Font = Enum.Font.SourceSans InfWood.Text = "InfWood" InfWood.TextColor3 = Color3.fromRGB(0, 0, 0) InfWood.TextSize = 14.000 InfWood.MouseButton1Down:Connect(function() game.Workspace.DiamondStoreEvents.AddMoney:FireServer(math.huge,"Wood") end) InfIron.Name = "Inf Iron" InfIron.Parent = DonutBakeryLife InfIron.BackgroundColor3 = Color3.fromRGB(0, 0, 0) InfIron.BackgroundTransparency = 0.500 InfIron.Position = UDim2.new(0.550561786, 0, 0.459192246, 0) InfIron.Size = UDim2.new(0, 120, 0, 31) InfIron.Font = Enum.Font.SourceSans InfIron.Text = "InfIron" InfIron.TextColor3 = Color3.fromRGB(0, 0, 0) InfIron.TextSize = 14.000 InfIron.MouseButton1Down:Connect(function() game.Workspace.DiamondStoreEvents.AddMoney:FireServer(math.huge,"Iron") end) DonutBakeryGui.Name = "Donut Bakery Gui" DonutBakeryGui.Parent = DonutBakeryLife DonutBakeryGui.BackgroundColor3 = Color3.fromRGB(0, 0, 0) DonutBakeryGui.BackgroundTransparency = 0.500 DonutBakeryGui.Size = UDim2.new(0, 267, 0, 18) DonutBakeryGui.Font = Enum.Font.SourceSans DonutBakeryGui.Text = "Script Creator:bjkefe2" DonutBakeryGui.TextColor3 = Color3.fromRGB(0, 0, 0) DonutBakeryGui.TextSize = 14.000 InfMoney.Name = "Inf Money" InfMoney.Parent = DonutBakeryLife InfMoney.BackgroundColor3 = Color3.fromRGB(0, 0, 0) InfMoney.BackgroundTransparency = 0.500 InfMoney.Position = UDim2.new(0, 0, 0.459192246, 0) InfMoney.Size = UDim2.new(0, 120, 0, 31) InfMoney.Font = Enum.Font.SourceSans InfMoney.Text = "InfMoney" InfMoney.TextColor3 = Color3.fromRGB(0, 0, 0) InfMoney.TextSize = 14.000 InfMoney.MouseButton1Down:Connect(function() game.Workspace.DiamondStoreEvents.AddCash:FireServer(math.huge) end) AutoRebirth.Name = "Auto Rebirth" AutoRebirth.Parent = DonutBakeryLife AutoRebirth.BackgroundColor3 = Color3.fromRGB(0, 0, 0) AutoRebirth.BackgroundTransparency = 0.500 AutoRebirth.Position = UDim2.new(0.273408234, 0, 0.733673215, 0) AutoRebirth.Size = UDim2.new(0, 120, 0, 31) AutoRebirth.Font = Enum.Font.SourceSans AutoRebirth.Text = "AutoRebirth" AutoRebirth.TextColor3 = Color3.fromRGB(0, 0, 0) AutoRebirth.TextSize = 14.000 AutoRebirth.MouseButton1Down:Connect(function() while true do wait() game.Workspace.DiamondStoreEvents.Rebirth:FireServer() end end) Close.Name = "Close" Close.Parent = DonutBakeryLife Close.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Close.BackgroundTransparency = 0.500 Close.Position = UDim2.new(0.82397002, 0, -0.000701745332, 0) Close.Size = UDim2.new(0, 47, 0, 18) Close.Font = Enum.Font.SourceSans Close.Text = "X" Close.TextColor3 = Color3.fromRGB(0, 0, 0) Close.TextSize = 14.000 Close.MouseButton1Down:Connect(function() DonutBakeryLife.Visible = false Open.Visible = true end) Open.Name = "Open" Open.Parent = DonutBakery Open.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Open.BackgroundTransparency = 0.500 Open.Position = UDim2.new(0, 0, 0.631474137, 0) Open.Size = UDim2.new(0, 85, 0, 35) OpenGui.Name = "OpenGui" OpenGui.Parent = Open OpenGui.BackgroundColor3 = Color3.fromRGB(0, 0, 0) OpenGui.BackgroundTransparency = 0.500 OpenGui.Size = UDim2.new(0, 85, 0, 35) OpenGui.Font = Enum.Font.SourceSans OpenGui.Text = "Open" OpenGui.TextColor3 = Color3.fromRGB(0, 0, 0) OpenGui.TextSize = 14.000 OpenGui.MouseButton1Down:Connect(function() Open.Visible = false DonutBakeryLife.Visible = true end)