tag document.addEventListener('DOMContentLoaded', function(event) { // modal box const boxBackgroundColor = '#FFF'; // string, ex. '#FFF'; const boxFont = ''; // string, ex. 'Helvetica, Arial, sans-serif;'; const boxMaxWidth = '380px'; // defaults to 370px, string, ex. '370px'; const boxFontColor = ''; // string, ex. '#000'; // image const includeImage = true; // boolean, ex. true (no quotes around true or false) const imageUrl = 'https://www.lucillesbbq.com/sites/default/files/2021-07/lucy-homepage-promo-convenience2_0.jpg'; const imageAltTxt = 'burger'; // string, ex. 'burger'; const imageMaxHeight = '180px;'; // string, ex. '180px'; // headline const headline = '$0 Delivery'; const headlineFontSize = '48px'; // string, ex. '64px'; const headlineMobileFontSize = '42px'; // string, ex. '56px'; const headlineUppercase = false; // boolean, ex. true (no quotes around true or false) const headlineFont = '"gin", serif'; // string (defaults to box setting if empty), ex. '"Brixton Lead Vector", sans-serif;'; const headlineFontColor = '#000'; // string, ex. '#000'; const headlineFontWeight = ''; // string, ex. '700'; // sub headline const subheadline = 'Now through June 5th'; const subheadlineFontSize = '16px'; // string, ex. '16px'; const subheadlineMobileFontSize = '16px'; // string, ex. '14px'; const subheadlineUppercase = false; // boolean, ex. true (no quotes around true or false) const subheadlineFont = ''; // string (defaults to box setting if empty), ex. '"Brixton Lead Vector", sans-serif;'; const subheadlineFontColor = ''; // string, ex. '#000'; const subheadlineFontWeight = ''; // string, ex. '400'; // cta buttons const singleButton = false; const doubleBtnOneTxt = 'Delivery'; // string, ex. 'Delivery'; const doubleBtnTwoTxt = 'Pickup'; // string, ex. 'Pickup'; const singleBtnTxt = 'Order Now'; // string, ex. 'Order Now'; const doubleBtnOneUrl = 'https://lucillesbbq.olo.com/'; // string, ex. 'https://order.example.com/'; const doubleBtnTwoUrl = 'https://lucillesbbq.olo.com/'; // string, ex. 'https://order.example.com/'; const singleBtnUrl = ''; // string, ex. 'https://order.example.com/'; const btnFontSize = '22px'; // string, ex. '16px'; const btnUppercase = true; // boolean, ex. true (no quotes around true or false) const btnFont = '"Knockout 48 A", "Knockout 48 B"'; const btnFontColor = '#FFF'; // string, ex. '#FFF'; const btnFontWeight = '400'; // string, ex. '400'; const btnBackgroundColor = '#588c8e'; // string, .ex '#b11b1e'; const btnBorderColor = '#588c8e'; // string, .ex '#b11b1e'; const btnPadding = '7px 20px;'; // string, ex. 10px 22px; const btnHoverFontColor = '#FFF'; // string, ex. '#FFF'; const btnHoverBackgroundColor = '#76270c'; // string, .ex '#769ca3'; // disclaimer const disclaimer = false; // false if there is no disclaimer, boolean, ex. true (no quotes around true or false) const disclaimerTxt = '*This is my disclaimer, a very very very very very very very very very long disclaimer'; // string, ex. 'This is my disclaimer'; const disclaimerFontSize = '10px'; // string, ex. '7px'; // single day reoccuring const isSingleDayReoccuring = false; // false if always on, boolean, ex. true (no quotes around true or false) const daysForSingleDayReoccuring = ['tuesday']; // must be in an array [], values can be 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', string, ex. ['sunday'];, ex. ['sunday','monday']; // start and end dates const startDate = '08-01-2025'; // leave as '' if no start date, string, ex. '05-22-2022'; const endDate = '08-31-2025'; // leave as '' if no end date, string, ex. '05-27-2022'; // create style element const style = document.createElement('style'); // add CSS styles style.innerHTML = ` .dwmodal { z-index: 100000; position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); opacity: 0; visibility: hidden; } .dwmodal-box { z-index: 1000; position: absolute; top: 40%; left: 50%; text-align: center; transform: translate(-50%, -50%); ${headlineFontColor ? `color: ${headlineFontColor};` : ''} ${boxFont ? `font-family: ${boxFont};` : ''} ${boxBackgroundColor ? `background-color: ${boxBackgroundColor};` : ''} ${includeImage ? 'padding: 0 0 30px 0;' : 'padding: 25px 0 30px 0;' } width: 85%; ${boxMaxWidth ? `max-width: ${boxMaxWidth};` : 'max-width: 370px;'} border-radius: 10px; /*background-image: linear-gradient(-86deg,#ececec 0,#fff 100%),linear-gradient(14deg,#000 0,#fff 100%);*/ /*background-image: url(/wp-content/uploads/2016/08/halftone_white.jpg)!important; background-position: 50%;*/ /*background-size: cover;*/ } .dwmodal-image { max-height: ${imageMaxHeight}; width: 100%; border-top-left-radius: 10px; border-top-right-radius: 10px; object-fit: cover; /*object-position: 0% 90%;*/ } .dwmodal-close-button { ${includeImage ? 'filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(91deg) brightness(101%) contrast(103%);' : ''} position: fixed; right: 10px; top: 10px; width: 25px; text-align: center; cursor: pointer; padding-top: 3px; } .dwmodal-headline { margin: 15px 2px 0 2px; line-height: 1.1; color: #000; ${headlineFontSize ? `font-size: ${headlineFontSize};` : ''} ${headlineFontColor ? `color: ${headlineFontColor};` : ''} ${headlineFont ? `font-family: ${headlineFont};` : ''} ${headlineUppercase ? 'text-transform: uppercase;' : ''} ${headlineFontWeight ? `font-weight: ${headlineFontWeight};` : ''} letter-spacing: 0px; padding-bottom: 0px; } .dwmodal-subheadline { margin: 5px 5px 25px 5px; ${subheadlineFontSize ? `font-size: ${subheadlineFontSize};` : ''} ${subheadlineFontColor ? `color: ${subheadlineFontColor};` : ''} ${subheadlineFont ? `font-family: ${subheadlineFont};` : ''} ${subheadlineUppercase ? 'text-transform: uppercase;' : ''} ${subheadlineFontWeight ? `font-weight: ${subheadlineFontWeight};` : ''} /*letter-spacing: 1px;*/ /*text-transform: uppercase;*/ } .dwmodal-order-btn { /*width: 150px;*/ /*min-height: 40px;*/ border-radius: 0px; display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; ${btnFontSize ? `font-size: ${btnFontSize};` : ''} ${btnFontColor ? `color: ${btnFontColor};` : ''} ${btnFont ? `font-family: ${btnFont};` : ''} ${btnUppercase ? 'text-transform: uppercase;' : ''} ${btnFontWeight ? `font-weight: ${btnFontWeight};` : ''} ${btnBackgroundColor ? `background-color: ${btnBackgroundColor};` : ''} ${btnBorderColor ? `border-color: ${btnBorderColor};` : ''} ${btnPadding ? `padding: ${btnPadding};` : ''} text-decoration: none; line-height: 1.2; letter-spacing: 1px; box-shadow: 0px 3px 10px rgb(0 0 0 / 16%); } .dwmodal-order-btn:hover, .dwmodal-order-btn:active, .dwmodal-order-btn:visited { text-decoration: none; } .dwmodal-order-btn:hover { ${btnHoverFontColor ? `color: ${btnHoverFontColor};` : ''} ${btnHoverBackgroundColor ? `background-color: ${btnHoverBackgroundColor};` : ''} } .dwmodal-first-btn { margin-right: 7px; } .dwmodal-disclaimer { margin: 25px 15px -20px 15px; text-align: left; } .dwmodal-disclaimer p { ${disclaimerFontSize ? `font-size: ${disclaimerFontSize};` : ''} line-height: 1.2; } .dwmodal-wrapper { display: flex; justify-content: center; } .dwmodal-show-modal { opacity: 1; visibility: visible; transform: scale(1.0); } @media only screen and (max-width: 600px) { .dwmodal-headline { ${headlineMobileFontSize ? `font-size: ${headlineMobileFontSize};` : ''} } .dwmodal-subheadline { ${subheadlineMobileFontSize ? `font-size: ${subheadlineMobileFontSize};` : ''} } } `; // append the style to the DOM in section document.head.appendChild(style); // time checks for single day reoccuring, start date, end date var inDayRange = false; var inTimeRange = false; const now = new Date(); if (isSingleDayReoccuring && daysForSingleDayReoccuring) { const days = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday']; var singleDayReoccuringDayIndexes = []; daysForSingleDayReoccuring.forEach((element) => { console.log(element); singleDayReoccuringDayIndexes.push(days.indexOf(element.toLowerCase())); }); const dateDay = now.getDay(); if (singleDayReoccuringDayIndexes.includes(dateDay)) { inDayRange = true; } else { inDayRange = false; } } else { inDayRange = true; } if (startDate && !endDate) { const startDateDateTime = new Date(startDate); if (now > startDateDateTime) { inTimeRange = true; } else { inTimeRange = false; } } else if (startDate && endDate) { const startDateDateTime = new Date(startDate); const endDateDateTime = new Date(endDate + ' 23:59:00'); if (now > startDateDateTime && now < endDateDateTime) { inTimeRange = true; } else { inTimeRange = false; } } else if (!startDate && endDate) { const endDateDateTime = new Date(endDate + ' 23:59:00'); if (now < endDateDateTime) { inTimeRange = true; } else { inTimeRange = false; } } else if (!startDate && !endDate) { inTimeRange = true; } var body = document.getElementsByTagName("BODY")[0]; body.insertAdjacentHTML('afterbegin', `
${includeImage ? `
${imageAltTxt}
close
` : '
close
'}

${headline}

${subheadline}

${singleButton ? `${singleBtnTxt}` : `${doubleBtnOneTxt}${doubleBtnTwoTxt}`}
${disclaimer ? `

${disclaimerTxt}

` : ''}
` ); var modal = document.querySelector(".dwmodal"); var closeButton = document.querySelector(".dwmodal-close-button"); function toggleModal() { modal.classList.toggle("dwmodal-show-modal"); sessionStorage.setItem('modalFired', 'true'); } function windowOnClick(event) { if (event.target === modal) { toggleModal(); } } closeButton.addEventListener("click", toggleModal); window.addEventListener("click", windowOnClick); if (!sessionStorage.getItem('modalFired') && inTimeRange && inDayRange) { toggleModal(); } }); // below for direct placement only, comment out when not placing directly, omit when demoing on a new website. DO NOT FORGET closing tag Skip to main content
More
Lucille's Logo
  • menu
  • locations
  • reservations
  • order online
  • catering
  • Shop
  • fundraisers
  • Gift Cards
  • contact
Current Location
change location
  • menu
  • locations
  • reservations
  • order online
  • Catering
    • Catering
    • food truck
  • fundraisers
  • Gift Cards
  • happy hour
  • Dine In Large Parties
  • Take Out Large Party Menu
  • Youth Programs
    • Blue Ribbon School Award
    • You Rock Community Award
  • shop
  • Eclub
  • About Us
    • Our Story
    • our bbq
    • awards
    • company
  • Nutrition
    • Gluten-Sensitive Menu
    • Nutrition Chart
    • Nutrition Calculator
    • Allergen Info

Become a Preferred Guest

Become a preferred guest of Lucille's and receive a $10 off $30 coupon, exclusive promotions (like a free appetizer or dessert on your birthday), announcements, and more!
Simply complete the form below.​

All fields with * are required
Oops, looks like we found some errors in your request.
Please fix the highlighted fields below.

BY CHECKING EITHER OF THE BOXES BELOW, I ACCEPT THE PROGRAM TERMS & CONDITIONS AND PRIVACY POLICY.

You only need to register once. Only one discount coupon will be sent per email address within 2-3 days from signing up. We do not sell or share our Preferred Guest's information with any outside organizations. The personal information you provide will be kept confidential and will only be used by us either to reply to you and to correspond in future with special offers, news and discounts. Must be 13 years or older to join and participate except where prohibited by law.

Come visit us Reservations and Waitlist

Have a party of 6 or more? Please call us to make your reservation or to check for availability. Click here to view locations

Order Online Choose Your Location

 

Credit card and gift card* payment only. For Bonus Cards and Promotional Cards, please call restaurant directly to place your order.

You are currently viewing the Large Party Take-Out Menu for Las Vegas - Red Rock Change Location
SELECT MENU
  • Dine-In Menu
    • Appetizers
    • Sandwiches and Burgers
    • Bar-B-Que
    • Southern Specialties
    • Bowls and Salads
    • Desserts
    • Free-Spirit Refreshers
    • More Beverages
    • Download Menu
  • Dine-In Lunch Menu
    • Appetizers
    • Sandwiches and Burgers
    • Bar-B-Que
    • Southern Classics
    • Bowls and Salads
    • Free-Spirit Refreshers
    • More Beverages
    • Download Menu
  • Dine-In Bar Menu
    • Bar Menu
    • Download Menu
  • Happy Hour
    • Happy Hour
    • Download Menu
  • Catering Menu
    • Catering
    • Download Menu
  • Large Party Take-Out Menu
    • Large Party Take-Out
    • Download Menu
  • Dine In Large Party Menu
    • Dine In Large Party
    • Download Menu
  • To-Go Bar Menu
    • To-Go Cocktails
    • Bottled Wine Specials To-Go
    • Download Menu
  • Kid's Menu
    • Backyard BBQ
    • Sides
    • Sweets
    • Smoothies & Floats
    • Download Menu

Large Party Take-Out

Download Menu for Availability

We hand-carve our meats to order
because we believe a little extra care makes for the most tender, succulent cuts of meat

Stay in the loop with special offers and events.

  • company
  • careers
  • Terms
  • Privacy Policy
  • CA Residents
  • Do Not Sell
  • accessibility
  • contact us
©2020 Lucille's Smokehouse BBQ