local RS = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local GrowChar = RS:FindFirstChild("GrowCharacter") if not GrowChar then return end local CoreGui = game:GetService("CoreGui") if CoreGui:FindFirstChild("HeightGrowGUI") then CoreGui.HeightGrowGUI:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "HeightGrowGUI" ScreenGui.Parent = CoreGui ScreenGui.ResetOnSpawn = false local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 400, 0, 400) MainFrame.Position = UDim2.new(0.5, -200, 0.5, -200) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 25) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local Border = Instance.new("Frame") Border.Size = UDim2.new(1, 6, 1, 6) Border.Position = UDim2.new(0, -3, 0, -3) Border.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Border.BorderSizePixel = 0 Border.Parent = MainFrame local BorderGradient = Instance.new("UIGradient") BorderGradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 0, 0)), ColorSequenceKeypoint.new(0.2, Color3.fromRGB(255, 150, 0)), ColorSequenceKeypoint.new(0.4, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(0.6, Color3.fromRGB(0, 255, 100)), ColorSequenceKeypoint.new(0.8, Color3.fromRGB(0, 150, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(200, 0, 255)) }) BorderGradient.Parent = Border local Content = Instance.new("Frame") Content.Size = UDim2.new(1, -10, 1, -10) Content.Position = UDim2.new(0, 5, 0, 5) Content.BackgroundColor3 = Color3.fromRGB(10, 10, 20) Content.BorderSizePixel = 0 Content.Parent = MainFrame local TitleBar = Instance.new("Frame") TitleBar.Size = UDim2.new(1, 0, 0, 40) TitleBar.Position = UDim2.new(0, 0, 0, 0) TitleBar.BackgroundColor3 = Color3.fromRGB(25, 25, 40) TitleBar.Parent = Content local Title = Instance.new("TextLabel") Title.Text = "1W69 | DISCORD" Title.Size = UDim2.new(1, -100, 1, 0) Title.Position = UDim2.new(0, 10, 0, 0) Title.BackgroundTransparency = 1 Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.GothamBold Title.TextSize = 18 Title.TextXAlignment = Enum.TextXAlignment.Left Title.Parent = TitleBar local LangBtn = Instance.new("TextButton") LangBtn.Text = "🌐 EN/AR" LangBtn.Size = UDim2.new(0, 80, 0, 30) LangBtn.Position = UDim2.new(1, -85, 0, 5) LangBtn.BackgroundColor3 = Color3.fromRGB(70, 70, 120) LangBtn.TextColor3 = Color3.fromRGB(255, 255, 255) LangBtn.Font = Enum.Font.GothamBold LangBtn.TextSize = 14 LangBtn.AutoButtonColor = false LangBtn.Parent = TitleBar local MainTitle = Instance.new("TextLabel") MainTitle.Text = "📏 INCREASE HEIGHT" MainTitle.Size = UDim2.new(1, 0, 0, 50) MainTitle.Position = UDim2.new(0, 0, 0.12, 0) MainTitle.BackgroundTransparency = 1 MainTitle.TextColor3 = Color3.fromRGB(255, 255, 255) MainTitle.Font = Enum.Font.GothamBold MainTitle.TextSize = 24 MainTitle.Parent = Content local WarningLabel = Instance.new("TextLabel") WarningLabel.Text = "⚠️ WARNING: Large numbers may cause lag/crash!" WarningLabel.Size = UDim2.new(1, 0, 0, 25) WarningLabel.Position = UDim2.new(0, 0, 0.27, 0) WarningLabel.BackgroundTransparency = 1 WarningLabel.TextColor3 = Color3.fromRGB(255, 100, 100) WarningLabel.Font = Enum.Font.Gotham WarningLabel.TextSize = 12 WarningLabel.Parent = Content local InputFrame = Instance.new("Frame") InputFrame.Size = UDim2.new(1, -40, 0, 50) InputFrame.Position = UDim2.new(0, 20, 0.35, 0) InputFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 50) InputFrame.BorderSizePixel = 0 InputFrame.Parent = Content local NumberInput = Instance.new("TextBox") NumberInput.PlaceholderText = "Enter growth count..." NumberInput.Text = "100" NumberInput.Size = UDim2.new(1, -20, 1, -10) NumberInput.Position = UDim2.new(0, 10, 0, 5) NumberInput.BackgroundColor3 = Color3.fromRGB(40, 40, 70) NumberInput.TextColor3 = Color3.fromRGB(255, 255, 255) NumberInput.Font = Enum.Font.Gotham NumberInput.TextSize = 18 NumberInput.Parent = InputFrame local InstantBtn = Instance.new("TextButton") InstantBtn.Text = "⚡ INSTANT GROWTH" InstantBtn.Size = UDim2.new(1, -40, 0, 50) InstantBtn.Position = UDim2.new(0, 20, 0.53, 0) InstantBtn.BackgroundColor3 = Color3.fromRGB(0, 180, 80) InstantBtn.TextColor3 = Color3.fromRGB(255, 255, 255) InstantBtn.Font = Enum.Font.GothamBold InstantBtn.TextSize = 18 InstantBtn.AutoButtonColor = false InstantBtn.Parent = Content local AutoBtn = Instance.new("TextButton") AutoBtn.Text = "🔄 AUTO GROW" AutoBtn.Size = UDim2.new(1, -40, 0, 50) AutoBtn.Position = UDim2.new(0, 20, 0.73, 0) AutoBtn.BackgroundColor3 = Color3.fromRGB(200, 120, 40) AutoBtn.TextColor3 = Color3.fromRGB(255, 255, 255) AutoBtn.Font = Enum.Font.GothamBold AutoBtn.TextSize = 18 AutoBtn.AutoButtonColor = false AutoBtn.Parent = Content local StatusLabel = Instance.new("TextLabel") StatusLabel.Text = "Ready..." StatusLabel.Size = UDim2.new(1, -40, 0, 30) StatusLabel.Position = UDim2.new(0, 20, 0.9, 0) StatusLabel.BackgroundTransparency = 1 StatusLabel.TextColor3 = Color3.fromRGB(200, 200, 255) StatusLabel.Font = Enum.Font.Gotham StatusLabel.TextSize = 14 StatusLabel.TextXAlignment = Enum.TextXAlignment.Center StatusLabel.Parent = Content local isEnglish = true local isAutoRunning = false local autoConnection = nil local texts = { english = { title = "1W69 | DISCORD", langBtn = "🌐 EN/AR", mainTitle = "📏 INCREASE HEIGHT", warning = "⚠️ WARNING: Large numbers may cause lag/crash!", placeholder = "Enter growth count...", instantBtn = "⚡ INSTANT GROWTH", autoBtn = "🔄 AUTO GROW", stopBtn = "⏹️ STOP AUTO", ready = "Ready...", growing = "Growing...", stopped = "Stopped", done = "Done!" }, arabic = { title = "1W69 | ديسكورد", langBtn = "🌐 عربي/EN", mainTitle = "📏 زيادة الطول", warning = "⚠️ تحذير: الأرقام الكبيرة قد تسبب تعليق/تهنيج!", placeholder = "أدخل عدد الزيادة...", instantBtn = "⚡ زيادة فورية", autoBtn = "🔄 زيادة تلقائية", stopBtn = "⏹️ إيقاف التلقائي", ready = "جاهز...", growing = "جاري الزيادة...", stopped = "متوقف", done = "تم!" } } local function updateLang() local lang = isEnglish and texts.english or texts.arabic Title.Text = lang.title LangBtn.Text = lang.langBtn MainTitle.Text = lang.mainTitle WarningLabel.Text = lang.warning NumberInput.PlaceholderText = lang.placeholder InstantBtn.Text = lang.instantBtn if isAutoRunning then AutoBtn.Text = lang.stopBtn else AutoBtn.Text = lang.autoBtn end if StatusLabel.Text == texts.english.ready or StatusLabel.Text == texts.arabic.ready then StatusLabel.Text = lang.ready end end local function instantGrow() local count = tonumber(NumberInput.Text) if not count or count < 1 then StatusLabel.Text = isEnglish and "Invalid number!" or "رقم غير صحيح!" StatusLabel.TextColor3 = Color3.fromRGB(255, 100, 100) return end StatusLabel.Text = isEnglish and texts.english.growing or texts.arabic.growing StatusLabel.TextColor3 = Color3.fromRGB(255, 200, 100) local success = 0 for i = 1, count do pcall(function() if GrowChar:IsA("RemoteEvent") then GrowChar:FireServer() success = success + 1 elseif GrowChar:IsA("RemoteFunction") then GrowChar:InvokeServer() success = success + 1 end end) end StatusLabel.Text = isEnglish and texts.english.done or texts.arabic.done StatusLabel.TextColor3 = Color3.fromRGB(100, 255, 100) InstantBtn.Text = "✅ " .. (isEnglish and "DONE" or "تم") InstantBtn.BackgroundColor3 = Color3.fromRGB(0, 255, 100) wait(1.5) InstantBtn.Text = isEnglish and texts.english.instantBtn or texts.arabic.instantBtn InstantBtn.BackgroundColor3 = Color3.fromRGB(0, 180, 80) end local function toggleAuto() if isAutoRunning then isAutoRunning = false if autoConnection then autoConnection:Disconnect() autoConnection = nil end StatusLabel.Text = isEnglish and texts.english.stopped or texts.arabic.stopped StatusLabel.TextColor3 = Color3.fromRGB(255, 100, 100) AutoBtn.Text = isEnglish and texts.english.autoBtn or texts.arabic.autoBtn AutoBtn.BackgroundColor3 = Color3.fromRGB(200, 120, 40) else isAutoRunning = true StatusLabel.Text = isEnglish and texts.english.growing or texts.arabic.growing StatusLabel.TextColor3 = Color3.fromRGB(255, 200, 50) AutoBtn.Text = isEnglish and texts.english.stopBtn or texts.arabic.stopBtn AutoBtn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) autoConnection = game:GetService("RunService").Heartbeat:Connect(function() if isAutoRunning then local count = tonumber(NumberInput.Text) or 1 for i = 1, math.min(count, 10) do pcall(function() if GrowChar:IsA("RemoteEvent") then GrowChar:FireServer() elseif GrowChar:IsA("RemoteFunction") then GrowChar:InvokeServer() end end) end end end) end end LangBtn.MouseButton1Click:Connect(function() isEnglish = not isEnglish updateLang() end) InstantBtn.MouseButton1Click:Connect(instantGrow) AutoBtn.MouseButton1Click:Connect(toggleAuto) LangBtn.MouseEnter:Connect(function() LangBtn.BackgroundColor3 = Color3.fromRGB(100, 100, 200) end) LangBtn.MouseLeave:Connect(function() LangBtn.BackgroundColor3 = Color3.fromRGB(70, 70, 120) end) InstantBtn.MouseEnter:Connect(function() InstantBtn.BackgroundColor3 = Color3.fromRGB(0, 220, 100) end) InstantBtn.MouseLeave:Connect(function() InstantBtn.BackgroundColor3 = Color3.fromRGB(0, 180, 80) end) AutoBtn.MouseEnter:Connect(function() if isAutoRunning then AutoBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) else AutoBtn.BackgroundColor3 = Color3.fromRGB(220, 140, 50) end end) AutoBtn.MouseLeave:Connect(function() if isAutoRunning then AutoBtn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) else AutoBtn.BackgroundColor3 = Color3.fromRGB(200, 120, 40) end end) local angle = 0 game:GetService("RunService").RenderStepped:Connect(function(delta) if ScreenGui.Parent then angle = (angle + delta * 80) % 360 BorderGradient.Rotation = angle end end) updateLang()