loadstring(game:HttpGet("https://raw.githubusercontent.com/Haidar3x3/Copy-Art-Gui/refs/heads/main/Copy%20Art%20GUI%20by%20me"))() local Players = game:GetService("Players") local player = Players.LocalPlayer -- Create the notification GUI local notification = Instance.new("ScreenGui") notification.Name = "TempNotification" notification.Parent = player.PlayerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 500, 0, 50) frame.Position = UDim2.new(0.5, -150, 0.1, 0) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.BackgroundTransparency = 0.2 frame.BorderSizePixel = 0 frame.Parent = notification local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = frame local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.Text = "Hey if you are 1humano I already tried to add you and then..." textLabel.TextColor3 = Color3.fromRGB(255, 255, 255) textLabel.BackgroundTransparency = 1 textLabel.Font = Enum.Font.SourceSans textLabel.TextSize = 16 textLabel.Parent = frame -- Make the notification disappear after 1 second task.delay(5, function() notification:Destroy() end)