-- 🔐 Key System + Panneau Hacker Binaire -- Auteur : ChatGPT -- Type : LocalScript (client uniquement) local player = game.Players.LocalPlayer local correctKey = "ACCESS-0101" -- 💾 Mets la clé que tu veux ici -- === Interface de saisie de clé === local gui = Instance.new("ScreenGui") gui.Name = "KeySystem" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 350, 0, 200) frame.Position = UDim2.new(0.5, -175, 0.5, -100) frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) frame.BorderSizePixel = 0 frame.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 50) title.BackgroundTransparency = 1 title.Text = "🔑 Entrez la clé d’accès" title.TextColor3 = Color3.fromRGB(0, 255, 255) title.Font = Enum.Font.GothamBold title.TextScaled = true title.Parent = frame local box = Instance.new("TextBox") box.Size = UDim2.new(0.8, 0, 0, 40) box.Position = UDim2.new(0.1, 0, 0.5, -20) box.PlaceholderText = "Votre clé ici..." box.BackgroundColor3 = Color3.fromRGB(40, 40, 40) box.TextColor3 = Color3.fromRGB(0, 255, 255) box.Font = Enum.Font.Code box.TextScaled = true box.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(0.5, 0, 0, 40) button.Position = UDim2.new(0.25, 0, 0.75, -20) button.Text = "Valider" button.BackgroundColor3 = Color3.fromRGB(0, 170, 255) button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.GothamBold button.TextScaled = Mehr sehen