-- this gui is made for Clone Tycoon 2 -- link to the game: https://www.roblox.com/games/413424176/Clone-Tycoon-2 local CloneHax = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local FirstButton = Instance.new("TextButton") local WelcomeLabel = Instance.new("TextLabel") local GemButton = Instance.new("TextButton") local SecondButton = Instance.new("TextButton") local MeLabel = Instance.new("TextLabel") CloneHax.Parent = Game.CoreGui CloneHax.Name = "CloneHax" MainFrame.Parent = CloneHax MainFrame.Name = "MainFrame" MainFrame.Active = true MainFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1) MainFrame.BorderSizePixel = 0 MainFrame.ClipsDescendants = true MainFrame.Draggable = true MainFrame.Position = UDim2.new(0.5, -250, 0.5, -150) MainFrame.Size = UDim2.new(0, 500, 0, 150) FirstButton.Parent = MainFrame FirstButton.Active = true FirstButton.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5) FirstButton.BorderSizePixel = 0 FirstButton.Position = UDim2.new(0.5, -75, 0.7, -15) FirstButton.Size = UDim2.new(0, 150, 0, 30) FirstButton.Text = "Boost Cash By 1.000.000" FirstButton.TextScaled = true WelcomeLabel.Parent = MainFrame WelcomeLabel.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) WelcomeLabel.BackgroundTransparency = 0 WelcomeLabel.Position = UDim2.new(0, 0, 0, 0) WelcomeLabel.Size = UDim2.new(0, 500, 0, 30) WelcomeLabel.Font = Enum.Font.Arial WelcomeLabel.FontSize = Enum.FontSize.Size24 WelcomeLabel.Text = "Welcome to Clone Tycoon 2 StatsBooster!" WelcomeLabel.TextColor3 = Color3.new(0.8, 0.8, 0.8) WelcomeLabel.TextSize = 20 GemButton.Parent = MainFrame GemButton.Active = true GemButton.BackgroundColor3 = Color3.new(0.5 ,255, 0.5) GemButton.BorderSizePixel = 0 GemButton.Position = UDim2.new(0.7, -75, 0.4, -15) GemButton.Size = UDim2.new(0, 150, 0, 30) GemButton.Text = "Boost Gems by 50" GemButton.TextScaled = true SecondButton.Parent = MainFrame SecondButton.Active = true SecondButton.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5) SecondButton.BorderSizePixel = 0 SecondButton.Position = UDim2.new(0.3, -75, 0.4, -15) SecondButton.Size = UDim2.new(0, 150, 0, 30) SecondButton.Text = "Boost Cash by 1.000" SecondButton.TextScaled = true MeLabel.Parent = MainFrame MeLabel.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) MeLabel.BackgroundTransparency = 1 MeLabel.Position = UDim2.new(0.9, -37.5, 0.9, -12.5) MeLabel.Size = UDim2.new(0, 75, 0, 25) MeLabel.Font = Enum.Font.Arial MeLabel.FontSize = Enum.FontSize.Size24 MeLabel.Text = "Created By AlreadyWokeUp" MeLabel.TextColor3 = Color3.new(0.8, 0.8, 0.8) MeLabel.TextScaled = true FirstButton.MouseButton1Click:connect(function() game.Workspace.Events.TycoonItems.PurchaseMarketItem:InvokeServer(-1000000,"choco") end) GemButton.MouseButton1Click:connect(function() game.Workspace.Events.TycoonItems.PurchaseGemItem:InvokeServer(-50, "choco") end) SecondButton.MouseButton1Click:connect(function() game.Workspace.Events.TycoonItems.PurchaseMarketItem:InvokeServer(-1000,"choco") end)