local gui = Instance.new("ScreenGui") gui.Name = "HymerGUI" gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Tween Service (Animasyon için) local TweenService = game:GetService("TweenService") -- GUI Ana Paneli local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 400, 0, 500) frame.Position = UDim2.new(0.5, -200, 0.5, -250) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.Active = true frame.Draggable = true -- **Animasyonlu Başlık** local title = Instance.new("TextLabel", gui) title.Size = UDim2.new(0, 400, 0, 50) title.Position = UDim2.new(0.5, -200, 0.1, 0) title.BackgroundTransparency = 1 title.Font = Enum.Font.SourceSansBold title.TextSize = 40 title.Text = "HYMER GUI v1" title.TextColor3 = Color3.fromRGB(255, 0, 0) -- **Renkli Animasyon** local function animateTitle() while true do local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut) local colorTween = TweenService:Create(title, tweenInfo, {TextColor3 = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255))}) colorTween:Play() wait(0.5) end end spawn(animateTitle) -- **Butonları oluşturma fonksiyonu** function createButton(name, position, func) local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(0, 380, 0, 30) btn.Position = UDim2.new(0, 10, 0, position) btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 20 btn.Text = name btn.MouseButton1Click:Connect(func) end -- 🎨 **Butonlar ve Fonksiyonları** 🎨 -- 1️⃣ **Skybox Değiştir** createButton("Skybox Değiştir", 10, function() game.Lighting.Sky.SkyboxBk = "rbxassetid://93610908239235" end) -- 2️⃣ **Decal Spam** createButton("Decal Spam", 50, function() for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("Part") or obj:IsA("MeshPart") then local decal = Instance.new("Decal", obj) decal.Texture = "rbxassetid://133923025127249" end end end) -- 3️⃣ **Scream (Korkutucu Ses)** createButton("Scream", 90, function() local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://7672204851" sound.Volume = 8 sound:Play() end) -- 4️⃣ **Ekran Sallama** createButton("Ekran Sallama", 130, function() local plr = game.Players.LocalPlayer for i = 1, 10 do plr.CameraMode = Enum.CameraMode.LockFirstPerson wait(0.1) plr.CameraMode = Enum.CameraMode.Classic wait(0.1) end end) -- 5️⃣ **Taco Yağmuru 🌮** createButton("Taco Yağmuru", 170, function() for i = 1, 50 do local taco = Instance.new("Part", workspace) taco.Size = Vector3.new(2, 2, 2) taco.Position = Vector3.new(math.random(-50, 50), 50, math.random(-50, 50)) taco.Material = Enum.Material.SmoothPlastic taco.Color = Color3.fromRGB(255, 255, 0) end end) -- 6️⃣ **Kill All ☠️** createButton("Kill All", 210, function() for _, player in pairs(game.Players:GetPlayers()) do if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.Health = 0 end end end) -- 7️⃣ **Fire All 🔥** createButton("Fire All", 250, function() for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("Part") or obj:IsA("MeshPart") then local fire = Instance.new("Fire", obj) fire.Color = Color3.fromRGB(math.random(0, 255), 0, 0) end end end) -- 8️⃣ **Mesaj Gönder** createButton("Mesaj Gönder", 290, function() game.StarterGui:SetCore("SendNotification", { Title = "Hymer GUI v1"; Text = "Aktif edildi!"; Duration = 5; }) end) -- 9️⃣ **Sabitleme Kaldır** createButton("Sabitleme Kaldır", 330, function() for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("Part") then obj.Anchored = false end end end) -- 🔟 **Disco Modu** createButton("Disco Modu", 370, function() while true do wait(0.5) for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("Part") then obj.Color = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255)) end end end end) -- 🔹 **Müzik Çalma** createButton("Müzik", 410, function() local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://15689443076" sound.Volume = 8 sound:Play() end) -- 🔹 **Uçan Oyuncular** createButton("Uçan Oyuncular", 450, function() game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true end) -- 🔹 **Glitch Efekti** createButton("Glitch Efekti", 490, function() while true do game.StarterGui:SetCore("SendNotification", {Title = "GLITCH!", Text = "Hymer GUI!", Duration = 2}) wait(0.2) end end) -- 🔹 **Hız Arttırma** createButton("Hız Arttırma", 530, function() local plr = game.Players.LocalPlayer plr.Character.Humanoid.WalkSpeed = plr.Character.Humanoid.WalkSpeed + 10 end) -- 🔹 **Gece Modu** createButton("Gece Modu", 570, function() game.Lighting.TimeOfDay = "00:00:00" end)