-- L00pGui - Par L00plkidd930 local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "L00pGui" gui.ResetOnSpawn = false -- Frame principale local main = Instance.new("Frame", gui) main.Size = UDim2.new(0, 400, 0, 450) main.Position = UDim2.new(0.1, 0, 0.1, 0) main.BackgroundColor3 = Color3.fromRGB(40, 40, 40) main.Active = true main.Draggable = true -- Onglet container local tabButtons = Instance.new("Frame", main) tabButtons.Size = UDim2.new(1, 0, 0, 30) tabButtons.BackgroundColor3 = Color3.fromRGB(20, 20, 20) -- Contenu des pages local pages = {} local pageNames = {"Skybox", "Effets", "Musique", "Troll", "Outils", "Special"} local currentPage = nil -- Création des pages et boutons onglets for i, name in ipairs(pageNames) do local tab = Instance.new("TextButton", tabButtons) tab.Size = UDim2.new(0, 80, 0, 30) tab.Position = UDim2.new(0, (i - 1) * 80, 0, 0) tab.Text = name tab.BackgroundColor3 = Color3.fromRGB(60, 60, 60) tab.TextColor3 = Color3.new(1, 1, 1) local page = Instance.new("Frame", main) page.Size = UDim2.new(1, 0, 1, -30) page.Position = UDim2.new(0, 0, 0, 30) page.Visible = false page.BackgroundTransparency = 1 pages[name] = page tab.MouseButton1Click:Connect(function() for _, p in pairs(pages) do p.Visible = false end page.Visible = true currentPage = name end) end -- Fonction pour ajouter un bouton dans une page local function addButton(pageName, text, posY, callback) local btn = Instance.new("TextButton", pages[pageName]) btn.Size = UDim2.new(0, 360, 0, 30) btn.Position = UDim2.new(0, 20, 0, posY) btn.Text = text btn.BackgroundColor3 = Color3.fromRGB(70, 70, 70) btn.TextColor3 = Color3.new(1, 1, 1) btn.MouseButton1Click:Connect(callback) end -- Page par défaut visible pages["Skybox"].Visible = true -- === BOUTONS DANS CHAQUE PAGE === -- SKYBOX addButton("Skybox", "Skybox 1", 10, function() local s = Instance.new("Sky", game.Lighting) for _, face in ipairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do s["Skybox"..face] = "rbxassetid://123366090373652" end end) addButton("Skybox", "Skybox 2", 50, function() local s = Instance.new("Sky", game.Lighting) for _, face in ipairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do s["Skybox"..face] = "rbxassetid://109796925383640" end end) -- EFFETS addButton("Effets", "Particules", 10, function() local particle = Instance.new("ParticleEmitter", player.Character.Head) particle.Texture = "rbxassetid://109796925383640" end) addButton("Effets", "Fire", 50, function() local f = Instance.new("Fire", player.Character.Head) end) addButton("Effets", "Kill Aura", 90, function() game:GetService("RunService").RenderStepped:Connect(function() for _, v in pairs(game.Players:GetPlayers()) do if v ~= player and v.Character and v.Character:FindFirstChild("Humanoid") then local dist = (v.Character.HumanoidRootPart.Position - player.Character.HumanoidRootPart.Position).Magnitude if dist < 10 then v.Character.Humanoid.Health = 0 end end end end) end) -- MUSIQUE addButton("Musique", "Theme 1x1x1x1", 10, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://139488665764275" s.Volume = 10 s.Pitch = 1.0 s:Play() end) addButton("Musique", "Theme Jumpstyle", 50, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://1839246711" s.Volume = 10 s.Pitch = 1.0 s:Play() end) addButton("Musique", "Theme L00p 930s", 90, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://6018028320" s.Volume = 10 s.Pitch = 1.0 s:Play() end) -- TROLL addButton("Troll", "Spam Decal 1", 10, function() for _, p in pairs(workspace:GetDescendants()) do if p:IsA("Part") then local d = Instance.new("Decal", p) d.Texture = "rbxassetid://123366090373652" end end end) addButton("Troll", "Spam Decal 2", 50, function() for _, p in pairs(workspace:GetDescendants()) do if p:IsA("Part") then local d = Instance.new("Decal", p) d.Texture = "rbxassetid://109796925383640" end end end) addButton("Troll", "Old Map Drop", 90, function() for _, obj in pairs(workspace:GetChildren()) do if not obj:IsA("Camera") and not obj:IsA("Terrain") and not game.Players:GetPlayerFromCharacter(obj) then obj:Destroy() end end local platform = Instance.new("Part", workspace) platform.Size = Vector3.new(300, 5, 300) platform.Anchored = false platform.Position = Vector3.new(100, 100, 0) platform.BrickColor = BrickColor.new("Dark stone grey") platform.Name = "OldMap" platform.Material = Enum.Material.Concrete task.spawn(function() while platform and platform.Parent do platform.BrickColor = BrickColor.Random() wait(0.2) end end) local music = Instance.new("Sound", workspace) music.SoundId = "rbxassetid://72089843969979" music.Volume = 10 music.Pitch = 1.0 music.Looped = true music:Play() end) -- OUTILS addButton("Outils", "TP L00plkidd Good", 10, function() game:GetService("TeleportService"):Teleport(74760143485776, player) end) addButton("Outils", "Message Join Team", 50, function() local msg = Instance.new("Message", workspace) msg.Text = "Join Team L00plkidd GuiL00p LOL Game" wait(3) msg:Destroy() end) -- SPECIAL : Nouveaux boutons -- L00pJumpscare addButton("Special", "L00pJumpscare", 10, function() local jumpscareGui = Instance.new("ScreenGui", player.PlayerGui) jumpscareGui.IgnoreGuiInset = true local frame = Instance.new("Frame", jumpscareGui) frame.Size = UDim2.new(1, 0, 1, 0) frame.BackgroundColor3 = Color3.new(1, 0, 0) frame.BackgroundTransparency = 0.2 local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://7236490488" sound.Volume = 10 sound:Play() for i = 1, 8 do frame.Visible = not frame.Visible wait(0.25) end jumpscareGui:Destroy() sound:Destroy() end) -- Scary 5 addButton("Special", "Scary 5", 60, function() local Message = "THIS GAME HAS BEEN HACKED BY CONCHKIDD" local mes2text = "YOU ALL MUST PERISH IN MY FIRE OF DEATH!" local mes = Instance.new("Hint", workspace) mes.Text = Message 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 mes2 = Instance.new("Message", workspace) mes2.Text = mes2text for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") and v.Parent:IsA("Model") then local outline = Instance.new("SelectionBox", v) outline.Adornee = v outline.Color3 = Color3.new(1, 1, 1) v.Name = Message v.Color = Color3.new(0, 0, 0) local fire = Instance.new("Fire", v) fire.Size = 100 fire.Color = Color3.new(1, 1, 1) local sky = Instance.new("Sky", game.Lighting) for _, face in ipairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do sky["Skybox"..face] = "rbxassetid://123366090373652" end local bill = Instance.new("BillboardGui", v) bill.Adornee = v bill.Size = UDim2.new(0, 200, 0, 200) local text = Instance.new("TextLabel", bill) text.Size = UDim2.new(0, 200, 0, 200) text.BackgroundTransparency = 1 text.TextScaled = false text.TextSize = 30 text.TextColor3 = Color3.new(1, 0, 0.0156863) text.Font = Enum.Font.Cartoon text.Text = Message end end end)