diff --git a/Games/Clicks_PerMin/README.md b/Games/Clicks_PerMin/README.md
new file mode 100644
index 0000000000..982f28d30a
--- /dev/null
+++ b/Games/Clicks_PerMin/README.md
@@ -0,0 +1,33 @@
+# **Click Per Minute**
+
+---
+
+
+
+## **Description 📃**
+
+- The "Click Per Minute Game" is an exciting and engaging game where users aim to achieve the highest number of clicks within one minute. It’s a fun and competitive way to test and improve your clicking speed and reaction time.
+
+## **functionalities 🎮**
+
+- Real-Time Point Counting: Keep track of your score in real-time as you click the button.
+Timer: A one-minute countdown timer to challenge your speed.
+Clicking Speed Display: See how fast you can click within the given time frame.
+
+
+
+## **How to play? 🕹️**
+Simply click the "Click Me!" button as many times as you can within one minute.
+Your score will be updated in real-time.
+Once the timer reaches zero, your final score will be displayed, showing the total number of clicks per minute.
+-
+
+
+
+## **Screenshots 📸**
+
+
+![image](../../assets/images/Clicks_PerMin.png)
+
+
+
diff --git a/Games/Clicks_PerMin/app.js b/Games/Clicks_PerMin/app.js
new file mode 100644
index 0000000000..4111a23ae8
--- /dev/null
+++ b/Games/Clicks_PerMin/app.js
@@ -0,0 +1,30 @@
+document.addEventListener('DOMContentLoaded', function() {
+ const clickButton = document.getElementById('clickButton');
+ const scoreDisplay = document.getElementById('score');
+ const timerDisplay = document.getElementById('timer');
+ const gameOverDisplay = document.getElementById('gameOver');
+ const finalScoreDisplay = document.getElementById('finalScore');
+
+ let score = 0;
+ let timeLeft = 60; // 60 seconds
+
+ clickButton.addEventListener('click', function() {
+ score++;
+ scoreDisplay.innerText = `Score: ${score}`;
+ });
+
+ // Timer function
+ const timer = setInterval(function() {
+ timeLeft--;
+ let minutes = Math.floor(timeLeft / 60);
+ let seconds = timeLeft % 60;
+ timerDisplay.innerText = `Time left: ${minutes}:${seconds.toString().padStart(2, '0')}`;
+
+ if (timeLeft === 0) {
+ clearInterval(timer);
+ clickButton.disabled = true;
+ finalScoreDisplay.innerText = score;
+ gameOverDisplay.classList.remove('d-none');
+ }
+ }, 1000);
+ });
\ No newline at end of file
diff --git a/Games/Clicks_PerMin/index.html b/Games/Clicks_PerMin/index.html
new file mode 100644
index 0000000000..254805d644
--- /dev/null
+++ b/Games/Clicks_PerMin/index.html
@@ -0,0 +1,27 @@
+
+
+
Click the button as many times as you can in 1 minute!
+ +Score: 0
+Time left: 1:00
+Game over! Your score is clicks per minute.
+