-- Services local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local TeleportService = game:GetService("TeleportService") local Lighting = game:GetService("Lighting") local ReplicatedStorage = game:GetService("ReplicatedStorage") local UserInputService = game:GetService("UserInputService") local player = Players.LocalPlayer local mouse = player:GetMouse() -- Création du ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Name = "HDGui" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui") -- Bouton principal "HD" local hdButton = Instance.new("TextButton") hdButton.Size = UDim2.new(0, 50, 0, 50) hdButton.Position = UDim2.new(0, 10, 0, 10) hdButton.BackgroundColor3 = Color3.fromRGB(0, 255, 255) hdButton.Text = "HD" hdButton.TextColor3 = Color3.new(1, 1, 1) hdButton.Font = Enum.Font.SourceSansBold hdButton.TextSize = 24 hdButton.Parent = screenGui -- Frame principale du GUI local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 300, 0, 500) mainFrame.Position = UDim2.new(0, 70, 0, 10) mainFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) mainFrame.Visible = false mainFrame.Parent = screenGui -- Fonction pour créer des boutons local function createButton(text, position, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(0, 280, 0, 40) button.Position = position button.BackgroundColor3 = Color3.fromRGB(100, 100, 100) button.Text = text button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.SourceSans button.TextSize = 20 button.Parent = mainFrame button.MouseButton1Click:Connect(callback) end -- Fonctionnalités des boutons createButton("Skybox Spam", UDim2.new(0, 10, 0, 10), function() local sky = Instance.new("Sky", Lighting) sky.SkyboxBk = "rbxassetid://132334144316293" sky.SkyboxDn = "rbxassetid://132334144316293" sky.SkyboxFt = "rbxassetid://132334144316293" sky.SkyboxLf = "rbxassetid://132334144316293" sky.SkyboxRt = "rbxassetid://132334144316293" sky.SkyboxUp = "rbxassetid://132334144316293" end) createButton("Musique Slowed Theme L00p HD", UDim2.new(0, 10, 0, 60), function() local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://132046898251409" sound.Volume = 1 sound.Pitch = 0.3 sound:Play() end) createButton("Téléportation vers un autre jeu", UDim2.new(0, 10, 0, 110), function() TeleportService:Teleport(115111307717908, player) end) createButton("Feu de partout", UDim2.new(0, 10, 0, 160), function() for _, part in pairs(workspace:GetChildren()) do if part:IsA("BasePart") then local fire = Instance.new("Fire", part) fire.Size = 10 fire.Heat = 25 end end end) createButton("Afficher Hint", UDim2.new(0, 10, 0, 210), function() local hint = Instance.new("Hint", workspace) hint.Text = "Xd Xd Xd HD Meepcity 22 Join Today The groupe L00plkidd by Today" wait(5) hint:Destroy() end) -- Nouveau bouton pour l'effet Disco avec decals et particules createButton("Disco Effect + Decals Spam + Particules", UDim2.new(0, 10, 0, 260), function() -- Décals Spam for i = 1, 50 do local part = Instance.new("Part") part.Size = Vector3.new(5, 5, 5) part.Position = Vector3.new(math.random(-50, 50), 100, math.random(-50, 50)) part.Anchored = false part.Parent = workspace local decal = Instance.new("Decal", part) decal.Texture = "rbxassetid://89931658676990" -- ID du decal à spammer end -- Particules for i = 1, 50 do local particleEmitter = Instance.new("ParticleEmitter") local part = Instance.new("Part") part.Size = Vector3.new(1, 1, 1) part.Position = Vector3.new(math.random(-50, 50), 100, math.random(-50, 50)) part.Anchored = true part.Parent = workspace particleEmitter.Parent = part particleEmitter.Texture = "rbxassetid://132334144316293" -- ID des particules particleEmitter.Rate = 100 particleEmitter.Lifetime = NumberRange.new(1, 2) particleEmitter.Speed = NumberRange.new(10) end end) -- Afficher/masquer le GUI principal hdButton.MouseButton1Click:Connect(function() mainFrame.Visible = not mainFrame.Visible end)