Skip to main content

Village Church

Hebrews – Jesus is Greater Than Moses

February 2, 2025

Series: Hebrews

Topic: Hebrews

Book: Hebrews

Scripture: Hebrews 3: 1-6

In our passage of Scripture today, we’ll see a continuation of the superiority of Jesus being pointed out. The previous chapters laid out Jesus was superior to the prophets and angels. In our text today, he pointed out that Jesus was also greater than Moses.

Locations & Times

Village church sc

574 Rimer Pond Road
Blythewood, SC 29016
803.419.0989

Office Hours
Mon – Thur • 9am – 5pm
Fri • 9am – 12pm

Service Times

Village Church SC
Sunday • 9:00 am & 10:30 am

LiveStream • 10:30am

(function () { "use strict"; function sitePath(path) { if (path.indexOf("http://") === 0 || path.indexOf("https://") === 0) return path; var prefix = window.location.pathname.indexOf("/staging/7977") === 0 ? "/staging/7977" : ""; return prefix + path; } var groups = [ ["I'm New", [["New Here", "/villagechurchsc/"], ["Connect Card", "https://villagechurchsc.churchcenter.com/people/forms/177085"], ["Events", "/events/"], ["Facebook", "https://www.facebook.com/VillageChurchSC"], ["Instagram", "https://www.instagram.com/villagechurchsc/"], ["Give", "/give/"]]], ["About", [["About Us", "/about-us/"], ["Leadership", "/leadership/"], ["Legacy of Faith", "/spiritual-journey/"]]], ["Connect", [["Connect Card", "https://villagechurchsc.churchcenter.com/people/forms/177085"], ["New Here", "/villagechurchsc/"], ["Village Groups", "/village-groups/"], ["Events", "/events/"], ["Facebook", "https://www.facebook.com/VillageChurchSC"], ["Instagram", "https://www.instagram.com/villagechurchsc/"]]], ["Ministries", [["Village Kids", "/village-kids/"], ["Village Students", "/village-students/"], ["Adults", "/adults/"], ["Village Groups", "/village-groups/"], ["Village Prays", "/village-prays/"], ["Village Worship", "/village-worship/"], ["First Impressions", "/first-impressions/"], ["C4", "/c4/"], ["Village Christian Academy", "https://villagechristianacademy.org"]]], ["Media", [["Watch Live", "/sunday-live-stream/"], ["Sermon Archive", "/sermon-archive/"], ["Study Guides", "/vgroups-study-guides/"], ["YouTube", "https://www.youtube.com/channel/UC_SKlL8U8hr4Olbhw6GT9-w"], ["The Wendell Estep Podcast", "/the-wendell-estep-podcast/"]]] ]; function makeLink(label, path, className) { var anchor = document.createElement("a"); anchor.href = sitePath(path); anchor.textContent = label; if (className) anchor.className = className; return anchor; } function buildNavigation() { var header = document.querySelector('[data-elementor-id="181"]'); var row = header && header.querySelector('.elementor-element-6ec82c0 > .e-con-inner'); if (!row || document.getElementById("vc-approved-nav")) return; var logoWidget = row.querySelector('.elementor-element-cff10a4'); var logoImage = logoWidget && logoWidget.querySelector("img"); if (logoWidget && logoImage && !logoImage.closest("a")) { var logoLink = document.createElement("a"); logoLink.href = sitePath("/"); logoLink.setAttribute("aria-label", "Village Church homepage"); logoImage.parentNode.insertBefore(logoLink, logoImage); logoLink.appendChild(logoImage); } var navigation = document.createElement("div"); navigation.id = "vc-approved-nav"; var desktop = document.createElement("nav"); desktop.className = "vc-desktop-nav"; desktop.setAttribute("aria-label", "Primary navigation"); groups.forEach(function (group) { var details = document.createElement("details"); var summary = document.createElement("summary"); var panel = document.createElement("div"); summary.textContent = group[0]; group[1].forEach(function (item) { panel.appendChild(makeLink(item[0], item[1])); }); details.appendChild(summary); details.appendChild(panel); desktop.appendChild(details); }); desktop.appendChild(makeLink("Give", "/give/", "vc-nav-give")); desktop.appendChild(makeLink("Watch Live", "/sunday-live-stream/", "vc-nav-watch")); desktop.appendChild(makeLink("I'm New", "/villagechurchsc/", "vc-nav-new")); var mobile = document.createElement("details"); mobile.className = "vc-mobile-nav"; var mobileSummary = document.createElement("summary"); mobileSummary.textContent = "Menu"; var mobilePanel = document.createElement("div"); mobilePanel.className = "vc-mobile-panel"; groups.forEach(function (group) { var section = document.createElement("section"); var label = document.createElement("strong"); label.textContent = group[0]; section.appendChild(label); group[1].forEach(function (item) { section.appendChild(makeLink(item[0], item[1])); }); mobilePanel.appendChild(section); }); var actions = document.createElement("div"); actions.className = "vc-mobile-actions"; actions.appendChild(makeLink("Watch Live", "/sunday-live-stream/")); actions.appendChild(makeLink("Give", "/give/")); mobilePanel.appendChild(actions); mobile.appendChild(mobileSummary); mobile.appendChild(mobilePanel); navigation.appendChild(desktop); navigation.appendChild(mobile); row.appendChild(navigation); var desktopDetails = Array.prototype.slice.call(desktop.querySelectorAll("details")); desktopDetails.forEach(function (detail) { detail.addEventListener("toggle", function () { if (!detail.open) return; desktopDetails.forEach(function (other) { if (other !== detail) other.open = false; }); }); }); document.addEventListener("click", function (event) { if (!navigation.contains(event.target)) { desktopDetails.forEach(function (detail) { detail.open = false; }); mobile.open = false; } }); document.addEventListener("keydown", function (event) { if (event.key !== "Escape") return; desktopDetails.forEach(function (detail) { detail.open = false; }); mobile.open = false; }); } function normalizeExistingMedia() { document.querySelectorAll('img[src*="/image6.heic"]').forEach(function (image) { image.src = "https://villagechurchsc.com/wp-content/uploads/2026/08/image8-1024x577.jpeg"; image.alt = image.alt || "Village Students baptism"; }); document.querySelectorAll('img[src*="/Booklet-pages-1.pdf"]').forEach(function (image) { image.src = "https://villagechurchsc.com/wp-content/uploads/2026/07/Untitled-March-23-2026-at-13.42.52-5-768x432.jpeg"; image.alt = "Chad Robichaux"; }); } function keepReviewLinksInStaging() { var prefix = "/staging/7977"; if (window.location.pathname.indexOf(prefix) !== 0) return; document.querySelectorAll('header a[href], footer a[href], [data-elementor-type] a[href]').forEach(function (anchor) { try { var target = new URL(anchor.getAttribute("href"), window.location.href); var path = target.pathname; if (target.origin === window.location.origin && path.indexOf(prefix) !== 0 && path.indexOf("/staging/") !== 0 && path.indexOf("/wp-admin/") !== 0 && path.indexOf("/wp-login.php") !== 0 && path.indexOf("/wp-content/") !== 0 && path.indexOf("/wp-includes/") !== 0 && path.indexOf("/wp-json/") !== 0) { anchor.href = prefix + path + target.search + target.hash; } } catch (error) {} }); } function labelEmbeddedMedia() { document.querySelectorAll('iframe[src*="subsplash.com/+s6v8/lb/ca/+zw87c46"]').forEach(function (frame) { if (!frame.title) frame.title = "Village Church events"; }); document.querySelectorAll('iframe[src*="subsplash.com/+s6v8/embed/mi/+skxxkvh"]').forEach(function (frame) { if (!frame.title) frame.title = "Village Church livestream"; }); document.querySelectorAll('iframe[src*="widget.spreaker.com/player"]').forEach(function (frame) { if (!frame.title) frame.title = "The Wendell Estep Podcast player"; }); } function initialize() { buildNavigation(); normalizeExistingMedia(); keepReviewLinksInStaging(); labelEmbeddedMedia(); } if (document.readyState === "loading") document.addEventListener("DOMContentLoaded", initialize); else initialize(); })();