-- PROJECT HIGGMA DELTA EDITION v1.9 - GUI FIXED local Higgma = {} -- Servisler local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local SoundService = game:GetService("SoundService") -- Higgma GUI Framework function Higgma:CreateWindow(title, size, position) local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "HiggmaGUI" ScreenGui.Parent = PlayerGui ScreenGui.ResetOnSpawn = false -- ✅ SES EKLENDİ self:PlayStartupSound() local MainFrame = Instance.new("Frame") MainFrame.Size = size or UDim2.new(0, 500, 0, 500) MainFrame.Position = position or UDim2.new(0.5, -250, 0.5, -250) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.BorderSizePixel = 2 MainFrame.BorderColor3 = Color3.fromRGB(255, 50, 50) MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui -- Başlık local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundColor3 = Color3.fromRGB(255, 50, 50) Title.Text = "💀 " .. title .. " - PROJECT HIGGMA" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 16 Title.Font = Enum.Font.GothamBold Title.Parent = MainFrame -- Kapat butonu local CloseButton = Instance.new("TextButton") CloseButton.Size = UDim2.new(0, 25, 0, 25) CloseButton.Position = UDim2.new(0.95, -25, 0, 0) CloseButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 14 CloseButton.Font = Enum.Font.GothamBold CloseButton.Parent = MainFrame CloseButton.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) return MainFrame end -- ✅ SES ÇALMA FONKSİYONU function Higgma:PlayStartupSound() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://5171091486" sound.Volume = 0.7 sound.Parent = SoundService sound.Loaded:Connect(function() sound:Play() sound.Ended:Connect(function() sound:Destroy() end) end) delay(3, function() if sound and sound.Parent then sound:Destroy() end end) end -- ✅ BUTON SES FONKSİYONU function Higgma:PlayButtonSound() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://5171091486" sound.Volume = 0.3 sound.Parent = SoundService sound.Loaded:Connect(function() sound:Play() sound.Ended:Connect(function() sound:Destroy() end) end) delay(2, function() if sound and sound.Parent then sound:Destroy() end end) end -- FONKSİYONLAR (SESLİ) function Higgma:FireballRain() self:PlayButtonSound() -- Fireball kodu buraya for i = 1, 30 do spawn(function() local fireball = Instance.new("Part") fireball.Name = "HiggmaFireball" .. i fireball.Size = Vector3.new(3, 3, 3) fireball.Shape = Enum.PartType.Ball fireball.Position = Vector3.new( math.random(-100, 100), math.random(50, 100), math.random(-100, 100) ) fireball.Anchored = false fireball.CanCollide = true fireball.Material = Enum.Material.Neon local colors = { BrickColor.new("Bright red"), BrickColor.new("Bright orange"), BrickColor.new("Bright yellow"), BrickColor.new("Bright green"), BrickColor.new("Bright blue"), BrickColor.new("Bright violet") } fireball.BrickColor = colors[math.random(1, #colors)] local fire = Instance.new("Fire") fire.Size = 5 fire.Heat = 8 fire.Color = Color3.new(1, math.random(), 0) fire.SecondaryColor = Color3.new(math.random(), math.random(), 1) fire.Parent = fireball local light = Instance.new("PointLight") light.Brightness = 5 light.Range = 10 light.Color = fireball.BrickColor.Color light.Parent = fireball fireball.Velocity = Vector3.new(0, -50, 0) fireball.Parent = workspace delay(10, function() if fireball and fireball.Parent then fireball:Destroy() end end) end) wait(0.2) end game:GetService("StarterGui"):SetCore("SendNotification", { Title = "FIREBALL RAIN", Text = "Ateş topu yağmuru başladı!", Duration = 5 }) end function Higgma:ClearFireballs() self:PlayButtonSound() for _, obj in pairs(workspace:GetChildren()) do if string.find(obj.Name, "HiggmaFireball") then obj:Destroy() end end game:GetService("StarterGui"):SetCore("SendNotification", { Title = "FIREBALL TEMİZLENDİ", Text = "Tüm ateş topları temizlendi!", Duration = 3 }) end function Higgma:LagServer() self:PlayButtonSound() for i = 1, 20 do local part = Instance.new("Part") part.Name = "HiggmaLag" .. i part.Size = Vector3.new(5, 5, 5) part.Position = Vector3.new( math.random(-50, 50), math.random(5, 20), math.random(-50, 50) ) part.Anchored = true part.CanCollide = true part.BrickColor = BrickColor.new("Bright red") part.Material = Enum.Material.Neon part.Parent = workspace end game:GetService("StarterGui"):SetCore("SendNotification", { Title = "LAG SERVER", Text = "Lag saldırısı aktif!", Duration = 5 }) end function Higgma:ClearLag() self:PlayButtonSound() for _, obj in pairs(workspace:GetChildren()) do if string.find(obj.Name, "HiggmaLag") then obj:Destroy() end end game:GetService("StarterGui"):SetCore("SendNotification", { Title = "LAG TEMİZLENDİ", Text = "Tüm lag objeleri temizlendi!", Duration = 3 }) end function Higgma:LoadInfiniteYield() self:PlayButtonSound() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "INFINITE YIELD", Text = "Admin scripti yüklendi!", Duration = 5 }) end function Higgma:LoadOwlHub() self:PlayButtonSound() loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt"))() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "OWL HUB", Text = "Oyun hileleri yüklendi!", Duration = 5 }) end function Higgma:LoadCMDX() self:PlayButtonSound() loadstring(game:HttpGet('https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source'))() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "CMD-X", Text = "Admin komutları yüklendi!", Duration = 5 }) end -- ✅ ANA HIGGMA GUI (TÜM BUTONLAR EKLENDİ) function Higgma:ShowMainGUI() local mainWindow = self:CreateWindow("MAIN MENU") -- ✅ SCRIPT EXECUTOR (DÜZGÜN BOYUT) local scriptBox = Instance.new("TextBox") scriptBox.Size = UDim2.new(0.9, 0, 0, 80) -- DÜZGÜN BOYUT scriptBox.Position = UDim2.new(0.05, 0, 0.05, 0) scriptBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30) scriptBox.TextColor3 = Color3.fromRGB(255, 255, 255) scriptBox.PlaceholderText = "Script kodunu buraya yaz..." scriptBox.Text = "" scriptBox.ClearTextOnFocus = false scriptBox.MultiLine = true scriptBox.TextSize = 12 scriptBox.TextXAlignment = Enum.TextXAlignment.Left scriptBox.TextYAlignment = Enum.TextYAlignment.Top scriptBox.Parent = mainWindow -- ✅ EXECUTE BUTONU local executeBtn = Instance.new("TextButton") executeBtn.Size = UDim2.new(0.4, 0, 0, 30) executeBtn.Position = UDim2.new(0.05, 0, 0.22, 0) executeBtn.BackgroundColor3 = Color3.fromRGB(0, 150, 0) executeBtn.Text = "⚡ EXECUTE" executeBtn.TextColor3 = Color3.fromRGB(255, 255, 255) executeBtn.TextSize = 14 executeBtn.Font = Enum.Font.GothamBold executeBtn.Parent = mainWindow executeBtn.MouseButton1Click:Connect(function() self:PlayButtonSound() loadstring(scriptBox.Text)() end) -- ✅ CLEAR BUTONU local clearBtn = Instance.new("TextButton") clearBtn.Size = UDim2.new(0.4, 0, 0, 30) clearBtn.Position = UDim2.new(0.55, 0, 0.22, 0) clearBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) clearBtn.Text = "🗑️ CLEAR" clearBtn.TextColor3 = Color3.fromRGB(255, 255, 255) clearBtn.TextSize = 14 clearBtn.Font = Enum.Font.GothamBold clearBtn.Parent = mainWindow clearBtn.MouseButton1Click:Connect(function() self:PlayButtonSound() scriptBox.Text = "" end) -- ✅ FIREBALL RAIN BUTONU local fireballBtn = Instance.new("TextButton") fireballBtn.Size = UDim2.new(0.9, 0, 0, 40) fireballBtn.Position = UDim2.new(0.05, 0, 0.32, 0) fireballBtn.BackgroundColor3 = Color3.fromRGB(255, 100, 0) fireballBtn.Text = "🔥 FIREBALL RAIN" fireballBtn.TextColor3 = Color3.fromRGB(255, 255, 255) fireballBtn.TextSize = 14 fireballBtn.Font = Enum.Font.GothamBold fireballBtn.Parent = mainWindow fireballBtn.MouseButton1Click:Connect(function() self:FireballRain() end) -- ✅ CLEAR FIREBALLS BUTONU local clearFireBtn = Instance.new("TextButton") clearFireBtn.Size = UDim2.new(0.9, 0, 0, 30) clearFireBtn.Position = UDim2.new(0.05, 0, 0.42, 0) clearFireBtn.BackgroundColor3 = Color3.fromRGB(0, 150, 200) clearFireBtn.Text = "💧 FIREBALL'LARI TEMİZLE" clearFireBtn.TextColor3 = Color3.fromRGB(255, 255, 255) clearFireBtn.TextSize = 12 clearFireBtn.Font = Enum.Font.GothamBold clearFireBtn.Parent = mainWindow clearFireBtn.MouseButton1Click:Connect(function() self:ClearFireballs() end) -- ✅ LAG SERVER BUTONU local lagBtn = Instance.new("TextButton") lagBtn.Size = UDim2.new(0.9, 0, 0, 35) lagBtn.Position = UDim2.new(0.05, 0, 0.52, 0) lagBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) lagBtn.Text = "💀 LAG SERVER" lagBtn.TextColor3 = Color3.fromRGB(255, 255, 255) lagBtn.TextSize = 14 lagBtn.Font = Enum.Font.GothamBold lagBtn.Parent = mainWindow lagBtn.MouseButton1Click:Connect(function() self:LagServer() end) -- ✅ CLEAR LAG BUTONU local clearLagBtn = Instance.new("TextButton") clearLagBtn.Size = UDim2.new(0.9, 0, 0, 30) clearLagBtn.Position = UDim2.new(0.05, 0, 0.62, 0) clearLagBtn.BackgroundColor3 = Color3.fromRGB(0, 100, 200) clearLagBtn.Text = "🧹 LAG'I TEMİZLE" clearLagBtn.TextColor3 = Color3.fromRGB(255, 255, 255) clearLagBtn.TextSize = 12 clearLagBtn.Font = Enum.Font.GothamBold clearLagBtn.Parent = mainWindow clearLagBtn.MouseButton1Click:Connect(function() self:ClearLag() end) -- ✅ INFINITE YIELD BUTONU local iyBtn = Instance.new("TextButton") iyBtn.Size = UDim2.new(0.9, 0, 0, 30) iyBtn.Position = UDim2.new(0.05, 0, 0.72, 0) iyBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 200) iyBtn.Text = "🛠️ INFINITE YIELD" iyBtn.TextColor3 = Color3.fromRGB(255, 255, 255) iyBtn.TextSize = 12 iyBtn.Font = Enum.Font.GothamBold iyBtn.Parent = mainWindow iyBtn.MouseButton1Click:Connect(function() self:LoadInfiniteYield() end) -- ✅ OWL HUB BUTONU local owlBtn = Instance.new("TextButton") owlBtn.Size = UDim2.new(0.9, 0, 0, 30) owlBtn.Position = UDim2.new(0.05, 0, 0.82, 0) owlBtn.BackgroundColor3 = Color3.fromRGB(255, 165, 0) owlBtn.Text = "🦉 OWL HUB" owlBtn.TextColor3 = Color3.fromRGB(255, 255, 255) owlBtn.TextSize = 12 owlBtn.Font = Enum.Font.GothamBold owlBtn.Parent = mainWindow owlBtn.MouseButton1Click:Connect(function() self:LoadOwlHub() end) -- ✅ CMD-X BUTONU local cmdxBtn = Instance.new("TextButton") cmdxBtn.Size = UDim2.new(0.9, 0, 0, 30) cmdxBtn.Position = UDim2.new(0.05, 0, 0.92, 0) cmdxBtn.BackgroundColor3 = Color3.fromRGB(0, 100, 200) cmdxBtn.Text = "⚡ CMD-X" cmdxBtn.TextColor3 = Color3.fromRGB(255, 255, 255) cmdxBtn.TextSize = 12 cmdxBtn.Font = Enum.Font.GothamBold cmdxBtn.Parent = mainWindow cmdxBtn.MouseButton1Click:Connect(function() self:LoadCMDX() end) end -- PROJECT HIGGMA BAŞLATMA Higgma:ShowMainGUI() print("🚀 PROJECT HIGGMA DELTA v1.9 AKTİF!") print("👑 Founder: hileyimaqss") print("✅ TÜM BUTONLAR EKLENDİ!") print("📏 TEXTBOX DÜZELTİLDİ!") print("🎵 SES SİSTEMİ AKTİF!")