loadstring(game:HttpGet("-- [[ CONFIGURATION ]] local SYSTEM_NAME = "JOIN GROUP TO ACESS" local ACCEPTS_KEYS = { "MY_SECRET_KEY_123", "FREE_KEY_2026", "TEST_KEY" } local GROUP_LINK = "[https://www.roblox.com.ml/communities/399342766766/Join to access]" -- Paste your Roblox group link here -- [[ SERVICES ]] local TweenService = game:GetService("TweenService") local Clipboard = setclipboard or toclipboard or print -- [[ GUI GENERATION ]] local CoreGui = game:GetService("CoreGui") local TargetParent = (CoreGui:FindFirstChild("RobloxGui") or CoreGui) if TargetParent:FindFirstChild(SYSTEM_NAME) then TargetParent[SYSTEM_NAME]:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = SYSTEM_NAME ScreenGui.ResetOnSpawn = false ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.Parent = TargetParent -- Main Background Frame local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 420, 0, 240) MainFrame.Position = UDim2.new(0.5, -210, 0.5, -120) MainFrame.BackgroundColor3 = Color3.fromRGB(24, 24, 28) MainFrame.BorderSizePixel = 0 MainFrame.Parent = ScreenGui local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = MainFrame local UIStroke = Instance.new("UIStroke") UIStroke.Color = Color3.fromRGB(45, 45, 52) UIStroke.Thickness = 1.5 UIStroke.Parent = MainFrame -- Top Header Bar local Header = Instance.new("Frame") Header.Name = "Header" Header.Size = UDim2.new(1, 0, 0, 45) Header.BackgroundColor3 = Color3.fromRGB(32, 32, 38) Header.BorderSizePixel = 0 Header.Parent = MainFrame local HeaderCorner = Instance.new("UICorner") HeaderCorner.CornerRadius = UDim.new(0, 10) HeaderCorner.Parent = Header local HeaderFix = Instance.new("Frame") HeaderFix.Size = UDim2.new(1, 0, 0, 10) HeaderFix.Position = UDim2.new(0, 0, 1, -10) HeaderFix.BackgroundColor3 = Color3.fromRGB(32, 32, 38) HeaderFix.BorderSizePixel = 0 HeaderFix.Parent = Header local TitleLabel = Instance.new("TextLabel") TitleLabel.Size = UDim2.new(1, -20, 1, 0) TitleLabel.Position = UDim2.new(0, 15, 0, 0) TitleLabel.BackgroundTransparency = 1 TitleLabel.Text = SYSTEM_NAME TitleLabel.TextColor3 = Color3.fromRGB(240, 240, 245) TitleLabel.TextSize = 16 TitleLabel.Font = Enum.Font.GothamBold TitleLabel.TextXAlignment = Enum.TextXAlignment.Left TitleLabel.Parent = Header -- Content Container local ContentContainer = Instance.new("Frame") ContentContainer.Size = UDim2.new(1, -30, 1, -60) ContentContainer.Position = UDim2.new(0, 15, 0, 55) ContentContainer.BackgroundTransparency = 1 ContentContainer.Parent = MainFrame -- Input Box local TextBoxFrame = Instance.new("Frame") TextBoxFrame.Size = UDim2.new(1, 0, 0, 45) TextBoxFrame.Position = UDim2.new(0, 0, 0, 15) TextBoxFrame.BackgroundColor3 = Color3.fromRGB(18, 18, 22) TextBoxFrame.BorderSizePixel = 0 TextBoxFrame.Parent = ContentContainer local BoxCorner = Instance.new("UICorner") BoxCorner.CornerRadius = UDim.new(0, 8) BoxCorner.Parent = TextBoxFrame local BoxStroke = Instance.new("UIStroke") BoxStroke.Color = Color3.fromRGB(40, 40, 48) BoxStroke.Thickness = 1 BoxStroke.Parent = TextBoxFrame local KeyInput = Instance.new("TextBox") KeyInput.Size = UDim2.new(1, -20, 1, 0) KeyInput.Position = UDim2.new(0, 10, 0, 0) KeyInput.BackgroundTransparency = 1 KeyInput.Text = "" KeyInput.PlaceholderText = "Enter your access key here..." KeyInput.TextColor3 = Color3.fromRGB(255, 255, 255) KeyInput.PlaceholderColor3 = Color3.fromRGB(100, 100, 110) KeyInput.TextSize = 14 KeyInput.Font = Enum.Font.Gotham KeyInput.TextXAlignment = Enum.TextXAlignment.Left KeyInput.Parent = TextBoxFrame -- Status Label local StatusLabel = Instance.new("TextLabel") StatusLabel.Size = UDim2.new(1, 0, 0, 20) StatusLabel.Position = UDim2.new(0, 0, 0, 70) StatusLabel.BackgroundTransparency = 1 StatusLabel.Text = "Status: Awaiting verification" StatusLabel.TextColor3 = Color3.fromRGB(160, 160, 170) StatusLabel.TextSize = 13 StatusLabel.Font = Enum.Font.GothamSemibold StatusLabel.TextXAlignment = Enum.TextXAlignment.Center StatusLabel.Parent = ContentContainer -- Button Grid Setup local ButtonContainer = Instance.new("Frame") ButtonContainer.Size = UDim2.new(1, 0, 0, 45) ButtonContainer.Position = UDim2.new(0, 0, 1, -45) ButtonContainer.BackgroundTransparency = 1 ButtonContainer.Parent = ContentContainer -- LEFT SIDE: Check Key Button local CheckButton = Instance.new("TextButton") CheckButton.Name = "CheckButton" CheckButton.Size = UDim2.new(0.48, 0, 1, 0) CheckButton.Position = UDim2.new(0, 0, 0, 0) CheckButton.BackgroundColor3 = Color3.fromRGB(40, 120, 240) CheckButton.BorderSizePixel = 0 CheckButton.Text = "Check Key" CheckButton.TextColor3 = Color3.fromRGB(255, 255, 255) CheckButton.TextSize = 14 CheckButton.Font = Enum.Font.GothamBold CheckButton.Parent = ButtonContainer local CheckCorner = Instance.new("UICorner") CheckCorner.CornerRadius = UDim.new(0, 8) CheckCorner.Parent = CheckButton -- RIGHT SIDE: Copy Group B