Pastebin
Retrouvez, créez et partagez vos snippets en temps réel.
Rechercher un Pastebin
Aucun paste trouvé.
Créer un paste
Pastebin
Blog
Script !8&z on discord
-- Gui Cybersécurité Panel - Développeur Roblox -- Interface professionnelle avec organisation catégorisée local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local UICorner = Instance.new("UICorner") local TitleFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local UIGradient = Instance.new("UIGradient") local CategoryTabs = Instance.new("Frame") local TabButtons = Instance.new("Frame") local UIListLayout = Instance.new("UIListLayout") local ContentFrame = Instance.new("ScrollingFrame") local UIListLayout2 = Instance.new("UIListLayout") local CloseButton = Instance.new("TextButton") -- Propriétés de l'interface ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.ResetOnSpawn = false -- Frame principale MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 30) MainFrame.Position = UDim2.new(0.3, 0, 0.25, 0) MainFrame.Size = UDim2.new(0, 400, 0, 450) MainFrame.Active = true MainFrame.Draggable = true -- Coins arrondis UICorner.CornerRadius = UDim.new(0, 8) UICorner.Parent = MainFrame -- Titre avec dégradé TitleFrame.Parent = MainFrame TitleFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 45) TitleFrame.Size = UDim2.new(1, 0, 0, 40) Title.Parent = TitleFrame Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 1, 0) Title.Font = Enum.Font.GothamBold Title.Text = "PANEL CYBERSÉCURITÉ" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 18 UIGradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(0, 0, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(0, 60, 120)) }) UIGradient.Parent = TitleFrame -- Onglets catégories CategoryTabs.Parent = MainFrame CategoryTabs.BackgroundColor3 = Color3.fromRGB(25, 25, 35) CategoryTabs.Position = UDim2.new(0, 0, 0, 40) CategoryTabs.Size = UDim2.new(0, 100, 0, 360) TabButtons.Parent = CategoryTabs TabButtons.BackgroundTransparency = 1 TabButtons.Size = UDim2.new(1, 0, 1, 0) UIListLayout.Parent = TabButtons UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Padding = UDim.new(0, 5) -- Contenu défilant ContentFrame.Parent = MainFrame ContentFrame.BackgroundTransparency = 1 ContentFrame.Position = UDim2.new(0, 105, 0, 45) ContentFrame.Size = UDim2.new(0, 285, 0, 355) ContentFrame.ScrollBarThickness = 3 ContentFrame.ScrollBarImageColor3 = Color3.fromRGB(0, 100, 200) UIListLayout2.Parent = ContentFrame UIListLayout2.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout2.Padding = UDim.new(0, 10) -- Bouton fermer CloseButton.Parent = TitleFrame CloseButton.BackgroundTransparency = 1 CloseButton.Position = UDim2.new(0.9, 0, 0, 0) CloseButton.Size = UDim2.new(0, 40, 1, 0) CloseButton.Font = Enum.Font.GothamBold CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 18 CloseButton.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- Fonction pour créer des boutons de catégorie local function createCategoryButton(name, order) local button = Instance.new("TextButton") button.Name = name .. "Tab" button.Parent = TabButtons button.BackgroundColor3 = Color3.fromRGB(40, 40, 60) button.Size = UDim2.new(0.9, 0, 0, 35) button.Position = UDim2.new(0.05, 0, 0, (order-1)*40) button.Font = Enum.Font.Gotham button.Text = name button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextSize = 14 button.LayoutOrder = order local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 6) corner.Parent = button return button end -- Fonction pour créer des boutons de script local function createScriptButton(name, script, color) local button = Instance.new("TextButton") button.Parent = ContentFrame button.BackgroundColor3 = color or Color3.fromRGB(50, 50, 80) button.Size = UDim2.new(0.95, 0, 0, 40) button.Font = Enum.Font.Gotham button.Text = name button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextSize = 14 local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 6) corner.Parent = button button.MouseButton1Click:Connect(function() loadstring(script)() end) return button end -- Création des catégories local teleportBtn = createCategoryButton("TÉLÉPORT", 1) local toolsBtn = createCategoryButton("OUTILS", 2) local securityBtn = createCategoryButton("SÉCURITÉ", 3) local miscBtn = createCategoryButton("DIVERS", 4) -- Fonction pour afficher le contenu d'une catégorie local function showCategory(categoryName) -- Nettoyer le contenu actuel for _, child in ipairs(ContentFrame:GetChildren()) do if child:IsA("TextButton") or child:IsA("TextLabel") then child:Destroy() end end -- Afficher le contenu selon la catégorie if categoryName == "TÉLÉPORT" then createScriptButton("Instant TP", 'loadstring(game:HttpGet("https://pastebin.com/raw/9j2BeeDM"))()', Color3.fromRGB(0, 100, 200)) local info = Instance.new("TextLabel") info.Parent = ContentFrame info.BackgroundTransparency = 1 info.Size = UDim2.new(0.95, 0, 0, 50) info.Font = Enum.Font.Gotham info.Text = "Téléportation instantanée vers différentes cibles" info.TextColor3 = Color3.fromRGB(200, 200, 200) info.TextSize = 12 info.TextWrapped = true elseif categoryName == "OUTILS" then createScriptButton("Nameless", 'loadstring(game:HttpGet("https://raw.githubusercontent.com/ily123950/Vulkan/refs/heads/main/Tr"))()', Color3.fromRGB(80, 160, 80)) createScriptButton("Invisible Clone", 'loadstring(game:HttpGet("https://raw.githubusercontent.com/DupeSab/INVIS-CLONER/refs/heads/main/TOKINU"))()', Color3.fromRGB(160, 80, 160)) local info = Instance.new("TextLabel") info.Parent = ContentFrame info.BackgroundTransparency = 1 info.Size = UDim2.new(0.95, 0, 0, 50) info.Font = Enum.Font.Gotham info.Text = "Outils avancés pour le développement et tests" info.TextColor3 = Color3.fromRGB(200, 200, 200) info.TextSize = 12 info.TextWrapped = true elseif categoryName == "SÉCURITÉ" then createScriptButton("Insta Block", 'loadstring(game:HttpGet("https://raw.githubusercontent.com/sabscripts063-cloud/Kdml-Not-Me/refs/heads/main/BlockPlayer"))()', Color3.fromRGB(200, 80, 80)) local info = Instance.new("TextLabel") info.Parent = ContentFrame info.BackgroundTransparency = 1 info.Size = UDim2.new(0.95, 0, 0, 70) info.Font = Enum.Font.Gotham info.Text = "Outils de sécurité et protection pour tests de pénétration" info.TextColor3 = Color3.fromRGB(200, 200, 200) info.TextSize = 12 info.TextWrapped = true elseif categoryName == "DIVERS" then createScriptButton("Allow/Disallow", 'loadstring(game:HttpGet("https://pastebin.com/raw/aipXbhpf",true))()', Color3.fromRGB(200, 160, 0)) local info = Instance.new("TextLabel") info.Parent = ContentFrame info.BackgroundTransparency = 1 info.Size = UDim2.new(0.95, 0, 0, 70) info.Font = Enum.Font.Gotham info.Text = "Scripts utilitaires divers pour le développement cybersécurité" info.TextColor3 = Color3.fromRGB(200, 200, 200) info.TextSize = 12 info.TextWrapped = true end end -- Connecter les boutons de catégorie teleportBtn.MouseButton1Click:Connect(function() showCategory("TÉLÉPORT") end) toolsBtn.MouseButton1Click:Connect(function() showCategory("OUTILS") end) securityBtn.MouseButton1Click:Connect(function() showCategory("SÉCURITÉ") end) miscBtn.MouseButton1Click:Connect(function() showCategory("DIVERS") end) -- Afficher la première catégorie par défaut showCategory("TÉLÉPORT") -- Ajout d'un effet de survol sur les boutons de catégorie for _, button in ipairs(TabButtons:GetChildren()) do if button:IsA("TextButton") then button.MouseEnter:Connect(function() game:GetService("TweenService"):Create(button, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(60, 60, 90)}):Play() end) button.MouseLeave:Connect(function() game:GetService("TweenService"):Create(button, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(40, 40, 60)}):Play() end) end end -- Notification d'initialisation game.StarterGui:SetCore("SendNotification", { Title = "Panel Cybersécurité", Text = "Interface chargée avec succès !", Duration = 3, Icon = "rbxassetid://6726578080" })
Créé il y a 3 semaines.