Clubs

The Bill Cipher Club
Members
11 Members
All Events played
2 All Events Played
Team events won
1 Team Event Won

The Bill Cipher Club

The Bill Cipher Club on Chess.com is a fun and engaging community for chess enthusiasts who enjoy both strategy and a bit of mystery. Inspired by the iconic and mischievous character Bill Cipher from the animated series Gravity Falls, the club brings together players of all levels to play games, share ideas, and improve their skills in a friendly environment.

The show itself is known for its clever storytelling, hidden clues, and a strong sense of adventure set in a strange and fascinating small town. It blends humor, mystery, and a touch of the supernatural, keeping viewers intrigued with puzzles and secrets woven into the storyline—without ever losing its light, entertaining tone. Bill Cipher, one of its most memorable characters, represents the mysterious and chaotic side of the show, making him a perfect inspiration for a club that values creativity and strategic thinking.

Whether you’re here to compete, learn, or just enjoy the vibe, the club offers a unique mix of chess and the загадка-filled (mystery-filled) spirit of the series, making every game feel a little more exciting.
 
 

Super Admins

NEAR A TREE, India
Joined Oct 24, 2024
658
Philippines
Joined Nov 13, 2024
Unrated
Qatar
Joined Nov 13, 2024
Unrated
u-never saw-me | lol you cant find it, India
Joined Dec 24, 2024
931
Yogesh Negi | India
Joined Mar 29, 2025
328
United States
Joined Mar 23, 2026
Unrated
United States
Joined Mar 23, 2026
731
Japan
Joined Mar 24, 2026
Unrated
United States
Joined Apr 11, 2026
1259

<!DOCTYPE html>
<html>
<head>
  <title>Clock Test</title>
  <style>
    .clock {
      width: 200px;
      height: 200px;
      border: 5px solid black;
      border-radius: 50%;
      position: relative;
      margin: 100px auto;
    }

    .hand {
      position: absolute;
      bottom: 50%;
      left: 50%;
      transform-origin: bottom;
      transform: translateX(-50%);
    }

    #hour { height: 50px; width: 5px; background: black; }
    #minute { height: 70px; width: 3px; background: black; }
    #second { height: 90px; width: 2px; background: red; }
  </style>
</head>
<body>

<div class="clock">
  <div id="hour" class="hand"></div>
  <div id="minute" class="hand"></div>
  <div id="second" class="hand"></div>
</div>

<script>
function updateClock() {
  const now = new Date();

  const seconds = now.getSeconds();
  const minutes = now.getMinutes();
  const hours = now.getHours();

  const secondDeg = seconds * 6;
  const minuteDeg = minutes * 6;
  const hourDeg = (hours % 12) * 30;

  document.getElementById("second").style.transform =
    "translateX(-50%) rotate(" + secondDeg + "deg)";

  document.getElementById("minute").style.transform =
    "translateX(-50%) rotate(" + minuteDeg + "deg)";

  document.getElementById("hour").style.transform =
    "translateX(-50%) rotate(" + hourDeg + "deg)";
}

setInterval(updateClock, 1000);
updateClock();
</script>

</body>
</html>