An Immersive Faith-Building Adventure

WordLock: KJV Biblical Escape Rooms

“Unlock the Mysteries of God’s Word – Immersive Online Escape Adventures Using Only the King James Version”

10,400+ Verses Unlocked
8 Themed Rooms
100% KJV Scripture

"Thy word is a lamp unto my feet, and a light unto my path."

Psalm 119:105 — KJV
From Those Who Have Played

A Word From the Saints

Our Wednesday night youth couldn't stop talking about Daniel's Lion Den. They were quoting verses they had to look up themselves. That hasn't happened in years.

Pastor Daniel Whitfield
Youth Pastor • Grace Baptist, Tennessee

As a homeschool mom of four, I needed something that didn't water down Scripture. WordLock uses the KJV exactly. My kids are memorizing verses without realizing it.

Rebecca Ainsworth
Homeschool Parent • Virginia

I run a college campus ministry. Our students are sharp — they need real challenge. The puzzles in Paul's Prison made them dig into the actual text. Beautiful work.

Caleb Foster
Campus Minister • InterVarsity, Texas
All Adventures

The Rooms

Each room is a single-session immersive experience built around one biblical narrative. Play solo or with your youth group, Bible class, or family. Progress saves automatically.

Your Guide

How to Play

Every WordLock room follows the same pattern. Once you've played one, you can play them all. Here's the rhythm:

I.

Enter the Chamber

Pick a room from the gallery. Each begins with a scene to set the moment — a stormy ark deck, a brookside, a sealed tomb.

II.

Read the Scripture

Each puzzle opens with a passage from the King James Version. Read it carefully. Every answer is hidden in the verse itself.

III.

Solve the Puzzle

Decode ciphers, sequence stories, match references, click objects, or open combination locks — all anchored in the text.

IV.

Use Prayer Points

Stuck? Spend a Prayer Point to receive a short devotional clue drawn from one of our trusted ministry sources. Three per room.

V.

Unlock the Final Verse

The last puzzle in every room unlocks a powerful capstone Scripture and a brief takeaway to carry into the week.

VI.

Earn Your Certificate

Type your name to receive a shareable parchment certificate with your verse and badge. Print it, screenshot it, treasure it.

A Note on Difficulty

Built for Ages 12–25

Beginner rooms suit middle schoolers and new believers. Intermediate rooms challenge high schoolers and youth groups. Advanced rooms are for serious Bible students, college ministries, and adult Bible study leaders. Every room rewards reading slowly — speed-readers will miss the answers.

Your Progress

My Locker

Rooms you've completed, verses you've unlocked, and badges earned along the way. Your progress saves to this device automatically.

Completed Rooms

No rooms completed yet. Your first adventure awaits.

Spiritual Badges

Earn one for completing each room.

Spiritual Growth Journal

After each room, take a moment with these prompts.

  • What verse from today's room stood out the most to me, and why?
  • What did this story show me about the character of God?
  • Where in my own life am I needing the same kind of faith?
  • One verse I want to commit to memory this week:
Our Heart

About WordLock

WordLock exists for one reason: to help students fall in love with the actual words of Scripture — not summaries, not paraphrases, not impressions of the Bible, but the text itself, exactly as it stands in the Authorized King James Version.

Statement of Faith

What We Believe

We hold to the historic, gospel-centered Christian faith — that the Bible is the inspired, inerrant Word of God; that Jesus Christ is the eternal Son of God who lived a sinless life, died a substitutionary death on the cross, rose bodily from the grave, and now sits at the right hand of the Father; that salvation is by grace alone, through faith alone, in Christ alone.

WordLock is non-denominational in tone but uncompromising on the gospel.

The KJV-Only Policy

Why the King James?

Every Scripture displayed on this platform is rendered verbatim from the Authorized King James Version (1611). No modern translations, no paraphrases, no dynamic equivalents. The text our students read here is the text they will read in their own KJV Bibles at home and at church.

Many of our partner churches, homeschools, and ministries use the KJV in their pulpit, classroom, and devotion. WordLock honors that tradition.

Approved Sources

Where Our Commentary Comes From

Every devotional clue and hint is drawn exclusively from this list of trusted ministries. We invent nothing.

    For Ministry Leaders

    Leader Resources

    Youth pastors, Bible class teachers, homeschool parents, campus ministers — here's everything you need to run WordLock as a group event.

    A

    Group Leader Guide (PDF)

    One-page handout per room — context, discussion questions, application points. Print and hand to your team leaders.

    B

    Team Play Mode

    Split your group into teams of 3–5. Project the room on a screen and let teams race to solve. Built-in scoring keeps it fair.

    C

    Devotional Follow-Up

    Each room ends with a takeaway pulled from our approved ministry list. Continue the conversation with related resources.

    D

    Six-Week Curriculum

    Sequence rooms with built-in memory verses for a complete Wednesday-night or Sunday-school series.

    Stand With Us

    Prayer Wall & Contact

    Share a prayer request, send a question, or let us know how WordLock is impacting your students. We read every message.

    Recent Prayers

    The Wall

    "Be careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God."

    Philippians 4:6 — KJV
    `); win.document.close(); win.focus(); setTimeout(() => win.print(), 250); } /* =========================================================== PRAYER WALL =========================================================== */ const PRAYER_KEY = 'wordlock:prayers:v1'; let prayers = [ { name: 'Youth Leader', type: 'Prayer Request', text: 'Pray that our students would hide the Word of God in their hearts and not just win the game.' }, { name: 'Homeschool Family', type: 'Praise Report', text: 'Thankful for a tool that makes Bible reading active, reverent, and memorable.' } ]; function loadPrayers() { try { const raw = localStorage.getItem(PRAYER_KEY); if (raw) prayers = JSON.parse(raw); } catch (e) {} } function savePrayers() { try { localStorage.setItem(PRAYER_KEY, JSON.stringify(prayers)); } catch (e) {} } function renderPrayerWall() { const feed = document.getElementById('prayer-feed'); if (!feed) return; feed.innerHTML = prayers.slice(0, 8).map(p => `
    ${escapeHtml(p.name || 'Anonymous')} · ${escapeHtml(p.type || 'Prayer Request')}
    ${escapeHtml(p.text || '')}
    `).join(''); } function submitPrayer() { const name = document.getElementById('prayer-name').value.trim() || 'Anonymous'; const text = document.getElementById('prayer-text').value.trim(); const type = document.getElementById('prayer-type').value; if (!text) { toast('Write a request or praise report before sending.'); return; } prayers.unshift({ name, type, text, date: new Date().toISOString() }); prayers = prayers.slice(0, 20); savePrayers(); renderPrayerWall(); document.getElementById('prayer-name').value = ''; document.getElementById('prayer-text').value = ''; toast('Added to the prayer wall on this device.'); } /* =========================================================== QUALITY OF LIFE: drag ordering, keyboard, safety helpers =========================================================== */ let dragSrc = null; document.addEventListener('dragstart', e => { const item = e.target.closest && e.target.closest('.seq-item'); if (!item) return; dragSrc = item; e.dataTransfer.effectAllowed = 'move'; }); document.addEventListener('dragover', e => { if (!dragSrc) return; const item = e.target.closest && e.target.closest('.seq-item'); if (!item || item === dragSrc) return; e.preventDefault(); const list = item.parentElement; const rect = item.getBoundingClientRect(); const before = e.clientY < rect.top + rect.height / 2; list.insertBefore(dragSrc, before ? item : item.nextSibling); }); document.addEventListener('dragend', () => { dragSrc = null; }); document.addEventListener('keydown', e => { if (e.key === 'Escape' && document.getElementById('roomModal').classList.contains('open')) closeRoom(); if (e.key === 'Enter' && document.getElementById('answerInput')) checkFillBlank(); }); document.getElementById('roomModal').addEventListener('click', e => { if (e.target.id === 'roomModal') closeRoom(); }); function escapeHtml(str) { return String(str).replace(/[&<>"']/g, ch => ({'&':'&','<':'<','>':'>','"':'"',"'":'''}[ch])); } /* =========================================================== STARTUP =========================================================== */ async function bootWordLock() { await loadState(); loadPrayers(); renderLocker(); renderPrayerWall(); const root = document.documentElement; root.style.setProperty('--loaded', '1'); toast('WordLock is ready. Choose a room to begin.'); } bootWordLock();