local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "GameUnsupportedUI" screenGui.ResetOnSpawn = false screenGui.Parent = playerGui local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 250, 0, 150) mainFrame.Position = UDim2.new(0.5, -125, 0.5, -75) mainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) mainFrame.BorderSizePixel = 0 mainFrame.Parent = screenGui local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 12) uiCorner.Parent = mainFrame local uiStroke = Instance.new("UIStroke") uiStroke.Thickness = 1.5 uiStroke.Color = Color3.fromRGB(50, 50, 50) uiStroke.Parent = mainFrame local message = Instance.new("TextLabel") message.Size = UDim2.new(1, -20, 0, 60) message.Position = UDim2.new(0, 10, 0, 10) message.BackgroundTransparency = 1 message.Text = "Script outdated click the button below to join our Discord." message.TextColor3 = Color3.fromRGB(255, 255, 255) message.Font = Enum.Font.Gotham message.TextSize = 14 message.TextWrapped = true message.TextYAlignment = Enum.TextYAlignment.Top message.Parent = mainFrame local discordButton = Instance.new("TextButton") discordButton.Size = UDim2.new(1, -40, 0, 30) discordButton.Position = UDim2.new(0, 20, 1, -40) discordButton.BackgroundColor3 = Color3.fromRGB(88, 101, 242) discordButton.Text = "Join our Discord" discordButton.TextColor3 = Color3.fromRGB(255, 255, 255) discordButton.Font = Enum.Font.GothamBold discordButton.TextSize = 14 discordButton.Parent = mainFrame local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = discordButton discordButton.MouseButton1Click:Connect(function() setclipboard("https://discord.gg/hCTCQwPKd3") end)