-- Create ScreenGui local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game:GetService("CoreGui") -- Create the Frame (menu) local Frame = Instance.new("Frame") Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Frame.Position = UDim2.new(0.3, 0, 0.3, 0) Frame.Size = UDim2.new(0, 250, 0, 120) Frame.Active = true Frame.Draggable = true -- Make the menu draggable Frame.BorderSizePixel = 0 Frame.BackgroundTransparency = 0.1 -- Title local Title = Instance.new("TextLabel") Title.Parent = Frame Title.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Title.Size = UDim2.new(1, 0, 0, 30) Title.Text = "Lennon Hub & Miranda Hub" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 18 Title.TextWrapped = true -- wrap text if it's too long -- Discord Button local Button = Instance.new("TextButton") Button.Parent = Frame Button.BackgroundColor3 = Color3.fromRGB(60, 60, 60) Button.Position = UDim2.new(0.1, 0, 0.5, 0) Button.Size = UDim2.new(0.8, 0, 0.3, 0) Button.Text = "Copy Discord Link" Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.Font = Enum.Font.SourceSansBold Button.TextSize = 16 -- Button Function Button.MouseButton1Click:Connect(function() setclipboard("https://discord.gg/JdsAvnMRZ3") Button.Text = "✅ Copied!" task.wait(2) Button.Text = "Copy Discord Link" end)