TWOBS MINIGAME

Welcome
to
Twobs Official Minigames



Twobs Bible Quiz

"WELCOME TO TWOBS MINI GAME*
🟢 Features Included:
✅ Interactive, fun, educational.
🎯 50 random Bible questions with answers.
🎮 Score tracking.
🎨 Styled with soft colors and rounded edges.
*Right Answers in "GREEN" and Wrong Answers in "RED". *
🔁 Endless loop—starts over after 50 questions.

TWOBS Bible Quiz

Score: 0
let twobsQuestions = [ {q:"Who built the ark?",a:"Noah",options:["Moses","Noah","Abraham","David"]}, {q:"Who was the first man?",a:"Adam",options:["Abraham","Adam","Isaac","Jacob"]}, {q:"What did Jesus turn water into?",a:"Wine",options:["Milk","Wine","Juice","Oil"]}, {q:"Where was Jesus born?",a:"Bethlehem",options:["Nazareth","Jerusalem","Bethlehem","Galilee"]}, {q:"Who betrayed Jesus?",a:"Judas",options:["Peter","Paul","Judas","John"]}, {q:"What is the last book of the Bible?",a:"Revelation",options:["Genesis","Matthew","Revelation","Psalms"]}, {q:"How many days did God create the world in?",a:"6",options:["3","6","7","8"]}, {q:"How many disciples did Jesus have?",a:"12",options:["10","11","12","13"]}, {q:"Who was swallowed by a big fish?",a:"Jonah",options:["Moses","Peter","Jonah","Paul"]}, {q:"Who received the Ten Commandments?",a:"Moses",options:["Noah","Moses","Elijah","Joshua"]}, {q:"Who was Jesus' mother?",a:"Mary",options:["Martha","Mary","Elizabeth","Sarah"]}, {q:"Where did Jesus die?",a:"Golgotha",options:["Bethlehem","Jerusalem","Golgotha","Nazareth"]}, {q:"What did God create on the first day?",a:"Light",options:["Water","Sky","Light","Animals"]}, {q:"What fruit did Eve eat?",a:"Forbidden fruit",options:["Apple","Grape","Forbidden fruit","Banana"]}, {q:"What is the first book of the Bible?",a:"Genesis",options:["Genesis","Exodus","Leviticus","Matthew"]}, {q:"Who led the Israelites out of Egypt?",a:"Moses",options:["Joshua","David","Elijah","Moses"]}, {q:"Which prophet was taken to heaven in a chariot?",a:"Elijah",options:["Elisha","Isaiah","Jeremiah","Elijah"]}, {q:"Who was David’s best friend?",a:"Jonathan",options:["Saul","Jonathan","Samuel","Solomon"]}, {q:"What is the golden rule?",a:"Do unto others as you would have them do to you",options:["Love your enemies","Don't steal","Honor your parents","Do unto others as you would have them do to you"]}, {q:"How many books are in the Bible?",a:"66",options:["66","72","60","100"]}, {q:"Who was the strongest man in the Bible?",a:"Samson",options:["David","Samson","Moses","Goliath"]}, {q:"What animal did Jesus ride into Jerusalem?",a:"Donkey",options:["Horse","Camel","Donkey","Ox"]}, {q:"How many plagues hit Egypt?",a:"10",options:["5","7","10","12"]}, {q:"What was Paul’s original name?",a:"Saul",options:["Peter","James","Saul","Barnabas"]}, {q:"Who denied Jesus three times?",a:"Peter",options:["John","Peter","Judas","Thomas"]}, {q:"What sea did Moses part?",a:"Red Sea",options:["Dead Sea","Red Sea","Sea of Galilee","Jordan"]}, {q:"What did Jesus feed 5,000 people with?",a:"5 loaves and 2 fish",options:["Bread","Manna","5 loaves and 2 fish","Nothing"]}, {q:"What is the shortest verse in the Bible?",a:"Jesus wept",options:["God is love","Jesus wept","Pray continually","Rejoice always"]}, {q:"Who lived in the whale for 3 days?",a:"Jonah",options:["Peter","Jonah","Job","Elijah"]}, {q:"Who was the first king of Israel?",a:"Saul",options:["David","Samuel","Solomon","Saul"]}, {q:"Who killed Goliath?",a:"David",options:["Saul","Jonathan","David","Moses"]}, {q:"Who wrote most of the Psalms?",a:"David",options:["Solomon","David","Asaph","Moses"]}, {q:"Which gospel is written by a doctor?",a:"Luke",options:["Matthew","John","Luke","Mark"]}, {q:"Where did God give Moses the Ten Commandments?",a:"Mount Sinai",options:["Mount Sinai","Mount Zion","Mount Ararat","Mount Horeb"]}, {q:"Who interpreted Pharaoh’s dream?",a:"Joseph",options:["Daniel","Joseph","Moses","Elijah"]}, {q:"Who built the temple in Jerusalem?",a:"Solomon",options:["David","Solomon","Samuel","Saul"]}, {q:"Who was thrown into the lions’ den?",a:"Daniel",options:["Shadrach","Elijah","Daniel","Nehemiah"]}, {q:"Who walked on water with Jesus?",a:"Peter",options:["James","Peter","John","Paul"]}, {q:"Which book tells about the early church?",a:"Acts",options:["Romans","Acts","Luke","Hebrews"]}, {q:"What happened at Pentecost?",a:"Holy Spirit came",options:["Rain fell","Jesus rose","Holy Spirit came","Disciples hid"]}, {q:"What’s the first commandment?",a:"No other gods before Me",options:["Keep Sabbath","No idols","No other gods before Me","Do not murder"]}, {q:"Who was the oldest man in the Bible?",a:"Methuselah",options:["Noah","Adam","Methuselah","Abraham"]}, {q:"What was Jesus’ first miracle?",a:"Turning water into wine",options:["Healing blind","Raising dead","Turning water into wine","Feeding 5000"]}, {q:"What did God use to speak to Moses?",a:"Burning bush",options:["Angel","Burning bush","Cloud","Voice in dream"]}, {q:"Who was Ruth’s mother-in-law?",a:"Naomi",options:["Hannah","Deborah","Naomi","Miriam"]}, {q:"Who was known for wisdom?",a:"Solomon",options:["David","Solomon","Samuel","Eli"]}, {q:"Who was Jesus' cousin?",a:"John the Baptist",options:["John the Apostle","James","John the Baptist","Peter"]}, {q:"Who wrote Revelation?",a:"John",options:["Paul","Peter","James","John"]}, {q:"How many days was Jesus in the tomb?",a:"3",options:["1","2","3","4"]}, {q:"What is the Bible?",a:"God's Word",options:["A novel","A rulebook","God's Word","History book"]} ]; let twobsScore = 0, twobsIndex = 0; function shuffle(a){return a.sort(()=>Math.random()-0.5);} function loadTWOBS(){ let q = twobsQuestions[twobsIndex]; document.getElementById('twobs-question').textContent = q.q; let ansDiv = document.getElementById('twobs-answers'); ansDiv.innerHTML = ''; shuffle(q.options).forEach(opt => { let btn = document.createElement('button'); btn.textContent = opt; btn.style.margin = '5px'; btn.onclick = ()=>checkTWOBS(opt); ansDiv.appendChild(btn); }); } function checkTWOBS(sel){ let correct = twobsQuestions[twobsIndex].a; if(sel === correct){ twobsScore++; document.getElementById('twobs-score').textContent = twobsScore; } Array.from(document.querySelectorAll('#twobs-answers button')).forEach(btn=>{ btn.disabled = true; if(btn.textContent === correct){ btn.style.background = '#cfc'; } else if(btn.textContent === sel){ btn.style.background = '#fcc'; } }); } function nextTWOBS(){ twobsIndex = (twobsIndex + 1) % twobsQuestions.length; loadTWOBS(); } shuffle(twobsQuestions); loadTWOBS();

Twobs Guess Game

🎮 Guess the Bible Character GameDive into a fun, interactive Bible game designed to challenge your knowledge of the most iconic people in Scripture!🔍 How to Play:1. You’ll be presented with 20 questions, each giving you a clue or riddle about a Bible character.2. Each comes with a Bible question.3. Select the correct character from the multiple-choice options.4. The game gives you instant feedback—right answers show in green, wrong ones in red.5. Once all 20 are completed, you can restart the game and try again for a perfect score!🟢 Features:
✅ 20 Unique Questions
✅ Bible Verse Clues
✅ Interactive, Educational & Fun
✅ Clean, Responsive Design
✅ Endless Replay
Test your memory, learn new verses, and enjoy a playful journey through the Word of God with TWOBS Minigames!

🙋♂️ Guess the Bible Character!

const questions = [ { clue: "I was swallowed by a big fish.", answer: "jonah", verse: "Jonah 1:17 – 'The Lord provided a great fish to swallow Jonah.'" }, { clue: "I killed Goliath with a stone.", answer: "david", verse: "1 Samuel 17:50 – 'David triumphed over the Philistine with a sling and a stone.'" }, { clue: "I built an ark and saved my family from a flood.", answer: "noah", verse: "Genesis 6:22 – 'Noah did everything just as God commanded him.'" }, { clue: "I led the Israelites out of Egypt.", answer: "moses", verse: "Exodus 3:10 – 'So now, go. I am sending you to Pharaoh to bring my people the Israelites out of Egypt.'" }, { clue: "I betrayed Jesus with a kiss.", answer: "judas", verse: "Luke 22:48 – 'Judas, are you betraying the Son of Man with a kiss?'" }, { clue: "I was the mother of Jesus.", answer: "mary", verse: "Luke 1:30-31 – 'You will conceive and give birth to a son, and you are to call him Jesus.'" }, { clue: "I walked on water with Jesus.", answer: "peter", verse: "Matthew 14:29 – 'Then Peter got down out of the boat, walked on the water.'" }, { clue: "I interpreted Pharaoh’s dreams.", answer: "joseph", verse: "Genesis 41:16 – 'I cannot do it, but God will give Pharaoh the answer he desires.'" }, { clue: "I was known for my great strength.", answer: "samson", verse: "Judges 16:30 – 'Thus he killed many more when he died than while he lived.'" }, { clue: "I denied Jesus three times.", answer: "peter", verse: "Luke 22:61 – 'Before the rooster crows today, you will disown me three times.'" }, { clue: "I was thrown into the lion’s den.", answer: "daniel", verse: "Daniel 6:22 – 'My God sent his angel, and he shut the mouths of the lions.'" }, { clue: "I baptized Jesus in the Jordan River.", answer: "john", verse: "Matthew 3:13 – 'Then Jesus came from Galilee to the Jordan to be baptized by John.'" }, { clue: "I was a tax collector and became Jesus' disciple.", answer: "matthew", verse: "Matthew 9:9 – 'Follow me,' he told him, and Matthew got up and followed him." }, { clue: "I saw a vision of heaven with a scroll and seals.", answer: "john", verse: "Revelation 5:1 – 'I saw in the right hand of him who sat on the throne a scroll.'" }, { clue: "I doubted Jesus had risen until I saw Him.", answer: "thomas", verse: "John 20:25 – 'Unless I see the nail marks in his hands... I will not believe.'" }, { clue: "I offered my son as a sacrifice to God.", answer: "abraham", verse: "Genesis 22:10 – 'Then he reached out his hand and took the knife to slay his son.'" }, { clue: "I was turned into a pillar of salt.", answer: "lot's wife", verse: "Genesis 19:26 – 'But Lot’s wife looked back, and she became a pillar of salt.'" }, { clue: "I was the first man created by God.", answer: "adam", verse: "Genesis 2:7 – 'Then the Lord God formed a man from the dust of the ground.'" }, { clue: "I helped hide the Israelite spies in Jericho.", answer: "rahab", verse: "Joshua 2:4 – 'But the woman had taken the two men and hidden them.'" }, { clue: "I anointed David as king while he was a boy.", answer: "samuel", verse: "1 Samuel 16:13 – 'Samuel took the horn of oil and anointed him.'" } ]; let currentIndex = 0; function displayQuestion() { document.getElementById("clue").textContent = questions[currentIndex].clue; document.getElementById("answer").value = ""; document.getElementById("feedback").textContent = ""; document.getElementById("verse").textContent = ""; } function checkAnswer() { const input = document.getElementById("answer").value.trim().toLowerCase(); const correct = questions[currentIndex].answer; const feedback = document.getElementById("feedback"); const verse = document.getElementById("verse"); if (input === correct) { feedback.textContent = "✅ Correct!"; feedback.style.color = "green"; verse.textContent = questions[currentIndex].verse; } else { feedback.textContent = `❌ Wrong! The correct answer was: ${correct.charAt(0).toUpperCase() + correct.slice(1)}`; feedback.style.color = "red"; verse.textContent = questions[currentIndex].verse; } } function nextQuestion() { currentIndex = (currentIndex + 1) % questions.length; displayQuestion(); } displayQuestion();

Twobs Flip Game

🧠 TWOBS Bible Memory Game

Flip cards to match Bible characters with their verses!

Score: 0

const gamePairs = [ ["Noah", "Genesis 6:14"], ["Moses", "Exodus 3:2"], ["David", "1 Samuel 17:45"], ["Jonah", "Jonah 1:17"], ["Jesus", "John 3:16"], ["Joseph", "Genesis 39:2"], ["Daniel", "Daniel 6:22"], ["Abraham", "Genesis 22:13"], ["Elijah", "1 Kings 18:38"], ["Paul", "Acts 9:3"] ]; let cards = []; let score = 0; gamePairs.forEach(([char, verse]) => { cards.push({ text: char, matched: false }); cards.push({ text: verse, matched: false }); }); cards = cards.sort(() => Math.random() - 0.5); const container = document.getElementById("grid"); const scoreDisplay = document.getElementById("score"); let flipped = []; let lock = false; function createCard(card, index) { const el = document.createElement("div"); el.style.width = "80px"; el.style.height = "80px"; el.style.display = "flex"; el.style.alignItems = "center"; el.style.justifyContent = "center"; el.style.border = "2px solid #4CAF50"; el.style.borderRadius = "10px"; el.style.background = "#4CAF50"; el.style.color = "#fff"; el.style.fontSize = "13px"; el.style.cursor = "pointer"; el.style.textAlign = "center"; el.style.padding = "5px"; el.innerText = "?"; el.dataset.index = index; el.onclick = () => { if (lock || cards[index].matched || flipped.includes(index)) return; el.innerText = cards[index].text; el.style.background = "#fff"; el.style.color = "#000"; flipped.push(index); if (flipped.length === 2) { lock = true; const [i1, i2] = flipped; if ( (gamePairs.find(p => p.includes(cards[i1].text) && p.includes(cards[i2].text))) && i1 !== i2 ) { cards[i1].matched = true; cards[i2].matched = true; score += 1; scoreDisplay.innerText = "Score: " + score; flipped = []; lock = false; if (score === gamePairs.length) { alert("🎉 Great Job! You matched all pairs."); } } else { setTimeout(() => { [i1, i2].forEach(i => { const c = container.querySelector(`[data-index="${i}"]`); c.innerText = "?"; c.style.background = "#4CAF50"; c.style.color = "#fff"; }); flipped = []; lock = false; }, 800); } } }; container.appendChild(el); } cards.forEach((card, i) => createCard(card, i));