local gui = Instance.new("ScreenGui", game.CoreGui) gui.Name = "HD_L00pGui" gui.ResetOnSpawn = false local frame = Instance.new("Frame", gui) frame.Name = "MainFrame" frame.Size = UDim2.new(0, 320, 0, 400) frame.Position = UDim2.new(0.3, 0, 0.05, 0) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.Active = true frame.Draggable = true local layout = Instance.new("UIGridLayout", frame) layout.CellSize = UDim2.new(0, 150, 0, 40) layout.CellPadding = UDim2.new(0, 10, 0, 10) local function createButton(name, callback) local btn = Instance.new("TextButton", frame) btn.Text = name btn.BackgroundColor3 = Color3.fromRGB(70, 70, 70) btn.TextColor3 = Color3.new(1,1,1) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 14 btn.MouseButton1Click:Connect(callback) end local function setSkybox(assetId) local sky = Instance.new("Sky", game.Lighting) for _, face in ipairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do sky["Skybox"..face] = "rbxassetid://"..assetId end game.Lighting.Sky = sky end createButton("Skybox 1", function() setSkybox("111229786281753") end) createButton("Skybox 2", function() setSkybox("120601024581260") end) local function spamDecals(assetId) for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") then local d = Instance.new("Decal", v) d.Texture = "rbxassetid://"..assetId end end end createButton("Spam Decal 1", function() spamDecals("111229786281753") end) createButton("Spam Decal 2", function() spamDecals("120601024581260") end) createButton("Particules", function() for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") then local p = Instance.new("ParticleEmitter", v) p.Texture = "rbxassetid://120601024581260" end end end) createButton("Disco", function() for i = 1, 20 do game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random()) wait(0.1) end end) createButton("Fire", function() for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") then Instance.new("Fire", v) end end end) createButton("Jumpscare", function() local img = Instance.new("ImageLabel", gui) img.Size = UDim2.new(1, 0, 1, 0) img.Image = "rbxassetid://120601024581260" img.BackgroundTransparency = 1 local s = Instance.new("Sound", game.Workspace) s.SoundId = "rbxassetid://136923704715029" s.Volume = 10 s:Play() wait(9) s:Destroy() img:Destroy() end) createButton("Theme L00p", function() local s = Instance.new("Sound", game.Workspace) s.SoundId = "rbxassetid://83080737598138" s.Looped = true s.Volume = 3 s:Play() end) createButton("Theme L00p 2", function() local s = Instance.new("Sound", game.Workspace) s.SoundId = "rbxassetid://1847661783" s.Looped = true s.Volume = 10 s:Play() end) createButton("TP Game L00p Bot 2", function() game:GetService("TeleportService"):Teleport(73068654909750) end) -- Nouveau bouton : Hint Team Today createButton("Hint Team Today", function() local hint = Instance.new("Hint", workspace) hint.Text = "Team L00plkidd by Team Today 6 good" end) -- Nouveau bouton : Hint Revival createButton("Hint Revival", function() local hint = Instance.new("Hint", workspace) hint.Text = "L00plkidd by Team Join Revival 6" end) -- Nouveau bouton : Scary 7 createButton("Scary 7", function() local message = Instance.new("Hint", workspace) message.Text = "L00plkidd by Team 6 Revival" game.Lighting:ClearAllChildren() game.Lighting.FogEnd = 100 game.Lighting.FogColor = Color3.new(0, 0, 0) local sound = Instance.new("Sound", workspace) sound.Looped = true sound.PlaybackSpeed = 0.3 sound.Volume = 5 sound.SoundId = "rbxassetid://1842908121" sound:Play() local sky = Instance.new("Sky", game.Lighting) for _, face in ipairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do sky["Skybox"..face] = "rbxassetid://111229786281753" end game.Lighting.Sky = sky for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") and v.Parent:IsA("Model") then local fire = Instance.new("Fire", v) fire.Size = 100 fire.Color = Color3.fromRGB(128, 0, 128) -- Violet foncé end end end)