local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextButton = Instance.new("TextButton") local Frame2 = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local TextButton2 = Instance.new("TextButton") local UICorner = Instance.new("UICorner") local UICorner2 = Instance.new("UICorner") local UICorner3 = Instance.new("UICorner") local WaitForChild = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.Parent = WaitForChild ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Name = "MainFrame" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.5, -150, 0.5, -50) Frame.Size = UDim2.new(0, 300, 0, 100) UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = Frame TextButton.Name = "JoinButton" TextButton.Parent = Frame TextButton.BackgroundColor3 = Color3.fromRGB(88, 101, 242) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.5, -100, 0.5, -20) TextButton.Size = UDim2.new(0, 200, 0, 40) TextButton.Font = Enum.Font.GothamBold TextButton.Text = "Join Discord For Script" TextButton.TextColor3 = Color3.fromRGB(255, 255, 255) TextButton.TextSize = 14 UICorner2.CornerRadius = UDim.new(0, 8) UICorner2.Parent = TextButton Frame2.Name = "DiscordFrame" Frame2.Parent = Frame Frame2.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Frame2.BorderSizePixel = 0 Frame2.Position = UDim2.new(0, 0, 1, 10) Frame2.Size = UDim2.new(1, 0, 0, 0) Frame2.ClipsDescendants = true UICorner3.CornerRadius = UDim.new(0, 10) UICorner3.Parent = Frame2 TextLabel.Name = "DiscordLabel" TextLabel.Parent = Frame2 TextLabel.BackgroundTransparency = 1 TextLabel.Position = UDim2.new(0.5, -130, 0, 15) TextLabel.Size = UDim2.new(0, 260, 0, 30) TextLabel.Font = Enum.Font.Gotham TextLabel.Text = "https://discord.gg/aA3AuHub" TextLabel.TextColor3 = Color3.fromRGB(88, 101, 242) TextLabel.TextSize = 14 TextLabel.TextWrapped = true TextButton2.Name = "CopyButton" TextButton2.Parent = Frame2 TextButton2.BackgroundColor3 = Color3.fromRGB(67, 181, 129) TextButton2.BorderSizePixel = 0 TextButton2.Position = UDim2.new(0.5, -60, 0, 55) TextButton2.Size = UDim2.new(0, 120, 0, 30) TextButton2.Font = Enum.Font.GothamBold TextButton2.Text = "Copy" TextButton2.TextColor3 = Color3.fromRGB(255, 255, 255) TextButton2.TextSize = 14 local UICorner4 = Instance.new("UICorner") UICorner4.CornerRadius = UDim.new(0, 6) UICorner4.Parent = TextButton2 local conn = TextButton.MouseButton1Click:Connect(function() local TweenSize = Frame2:TweenSize(UDim2.new(1, 0, 0, 100), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, 0.4, true) end) local conn2 = TextButton2.MouseButton1Click:Connect(function() setclipboard("https://discord.gg/aA3AuHub") TextButton2.Text = "Copied!" TextButton2.BackgroundColor3 = Color3.fromRGB(57, 161, 109) wait(1.5) TextButton2.Text = "Copy" TextButton2.BackgroundColor3 = Color3.fromRGB(67, 181, 129) end) local conn3 = TextButton.MouseEnter:Connect(function(...) local TweenSize2 = TextButton:TweenSize(UDim2.new(0, 210, 0, 42), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 0.2, true) TextButton.BackgroundColor3 = Color3.fromRGB(98, 111, 252) end) local conn4 = TextButton.MouseLeave:Connect(function(...) local TweenSize3 = TextButton:TweenSize(UDim2.new(0, 200, 0, 40), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 0.2, true) TextButton.BackgroundColor3 = Color3.fromRGB(88, 101, 242) end) local conn5 = TextButton2.MouseEnter:Connect(function(...) TextButton2.BackgroundColor3 = Color3.fromRGB(77, 191, 139) end) local conn6 = TextButton2.MouseLeave:Connect(function(...) end) local conn7 = Frame.InputBegan:Connect(function(input, gameProcessed) end) local conn8 = Frame.InputChanged:Connect(function(input, gameProcessed) end) local UIS = game:GetService("UserInputService") local conn9 = UIS.InputChanged:Connect(function(input, gameProcessed) end)