loadstring([[local Players=game:GetService("Players");local player=Players.LocalPlayer;local GROUP_ID=8505666282;local GROUP_LINK="https://www.roblox.com/communities/8505666282/";local REQUIRED_KEY="YOUR_KEY_HERE";local ScreenGui=Instance.new("ScreenGui");ScreenGui.Name="GroupKeyGUI";ScreenGui.ResetOnSpawn=false;ScreenGui.Parent=player:WaitForChild("PlayerGui");local Frame=Instance.new("Frame");Frame.Size=UDim2.fromOffset(360,210);Frame.Position=UDim2.new(.5,-180,.5,-105);Frame.BackgroundColor3=Color3.fromRGB(30,30,35);Frame.BorderSizePixel=0;Frame.Parent=ScreenGui;local Title=Instance.new("TextLabel");Title.Size=UDim2.new(1,0,0,45);Title.BackgroundTransparency=1;Title.Text="Group Key";Title.TextColor3=Color3.fromRGB(255,255,255);Title.TextSize=22;Title.Font=Enum.Font.GothamBold;Title.Parent=Frame;local KeyBox=Instance.new("TextBox");KeyBox.Size=UDim2.new(1,-30,0,40);KeyBox.Position=UDim2.fromOffset(15,55);KeyBox.PlaceholderText="Enter key...";KeyBox.Text="";KeyBox.TextSize=16;KeyBox.Font=Enum.Font.Gotham;KeyBox.BackgroundColor3=Color3.fromRGB(45,45,52);KeyBox.TextColor3=Color3.fromRGB(255,255,255);KeyBox.Parent=Frame;local CopyButton=Instance.new("TextButton");CopyButton.Size=UDim2.new(1,-30,0,40);CopyButton.Position=UDim2.fromOffset(15,105);CopyButton.Text="Copy Group Link";CopyButton.TextSize=16;CopyButton.Font=Enum.Font.GothamBold;CopyButton.BackgroundColor3=Color3.fromRGB(55,120,255);CopyButton.TextColor3=Color3.fromRGB(255,255,255);CopyButton.Parent=Frame;local Status=Instance.new("TextLabel");Status.Size=UDim2.new(1,-30,0,35);Status.Position=UDim2.fromOffset(15,155);Status.BackgroundTransparency=1;Status.TextSize=14;Status.Font=Enum.Font.Gotham;Status.TextColor3=Color3.fromRGB(255,80,80);Status.Text="";Status.Parent=Frame;local success,inGroup=pcall(function()return player:IsInGroup(GROUP_ID)end);if not success or not inGroup then Status.Text="ERROR: User not in group" else Status.Text="User is in the group.";Status.TextColor3=Color3.fromRGB(80,255,120)end;KeyBox.FocusLost:Connect(function()if KeyBox.Text==REQUIRED_KEY then Status.Text="Key accepted!";Status.TextColor3=Color3.fromRGB(80,255,120)else Status.Text="Invalid key.";Status.TextColor3=Color3.fromRGB(255,80,80)end end);CopyButton.MouseButton1Click:Connect(function()if typeof(setclipboard)=="function" then setclipboard(GROUP_LINK);CopyButton.Text="Copied!";task.wait(1.5);CopyButton.Text="Copy Group Link"else Status.Text=GROUP_LINK;Status.TextColor3=Color3.fromRGB(255,255,255)end end)]])()