Concession Machine Rentals

items
Set Event Date

Concession Machine Rentals and Supplies for Rent

24279

Concession machine rentals in Dayton, Ohio from A&S Party Rental — popcorn, cotton candy, frozen drinks, snow cones, ideal for company picnics and parties.

Professional delivery to Dayton Ohio and surrounding areas. Please submit a quote or contact us to be sure we service your area.

Concession Machine Rentals in Dayton, Ohio

Make your next event sweet, salty, and totally fun with A&S Party Rental’s concession machine rentals in Dayton! Perfect for company picnics, birthday parties, school events, and family gatherings, our machines bring classic carnival flavors that everyone loves.

Choose from our most popular rentals including popcorn machines, cotton candy machines, frozen drink machines, and snow cones. Each machine is clean, easy to use, and adds a deliciously fun touch to your event.

Whether it’s a company picnic, school carnival, or backyard party, our concession machines make your Dayton event memorable, tasty, and full of smiles.

Bring the flavor—contact A&S Party Rental today to reserve your concession machines and treat your guests to something special!

function CategoryGallery(rental_id, rental_name, images_arr){ var rid = rental_id; var rentalName = rental_name; // Normalize images_arr: it may arrive as a JSON string, an object, or be undefined try { if (typeof images_arr === 'string' && images_arr.length) { images_arr = JSON.parse(images_arr); } } catch (e) { images_arr = {}; } if (!images_arr) images_arr = {}; // Where to append anchors and thumbs var $bigAfter = jQuery('#io_img_big2_' + rid); var $thumbAfter = jQuery('#io_img_thumb1_' + rid); if ($bigAfter.length && $thumbAfter.length) { var relVal = $bigAfter.attr('rel') || 'img_group noopener'; // Helper to validate a URL-like value (non-empty and not literal placeholders) var isValid = function (u) { if (!u) return false; var s = String(u).trim(); if (!s) return false; if (s.indexOf('%%') !== -1) return false; // ignore unreplaced placeholders if (s === '0' || s.toLowerCase() === 'null' || s.toLowerCase() === 'undefined') return false; return true; }; var addedThumbs = 0; // Iterate image map and append missing big anchors and thumbs for (var key in images_arr) { if (!images_arr.hasOwnProperty(key)) continue; var imgObj = images_arr[key] || {}; var href = imgObj["rentalimage_imagelocbig"] || imgObj["imagelocbig"] || imgObj["big"]; var src = imgObj["rentalimage_imageloc"] || imgObj["imageloc"] || imgObj["thumb"]; // Compute index consistent with existing templates var n = parseInt(key, 10); if (isNaN(n)) { // Try to derive from position by incrementing a counter if keys are not numeric n = 1; } // Category templates already include big1, big2, and thumb1; gallery adds 2+ when missing var bigIndex = n + 1; // matches io_cart_shortcode.html pattern var thumbIndex = n + 1; // thumb id series aligns with big series in newer code // Add big anchor if valid and not already present if (isValid(href)) { var bigId = '#io_img_big' + bigIndex + '_' + rid; if (jQuery(bigId).length === 0) { var $a = jQuery('', { rel: relVal, href: href, id: 'io_img_big' + bigIndex + '_' + rid }); $bigAfter.after($a); $bigAfter = $a; // maintain insertion point } } // Add thumbnail if valid and not already present if (isValid(src)) { var thumbId = '#io_img_thumb' + thumbIndex + '_' + rid; if (jQuery(thumbId).length === 0) { var $img = jQuery('', { 'class': 'io_image_thumb skip-lazy', title: rentalName, src: src, alt: rentalName, id: 'io_img_thumb' + thumbIndex + '_' + rid }).on('mouseover', function () { if (typeof updateMainPic === 'function') { updateMainPic(this); } }); $thumbAfter.after($img); $thumbAfter = $img; // maintain insertion point addedThumbs++; } } } // Reveal the thumbnail box if we added any extra thumbnails if (addedThumbs > 0) { jQuery('#io_img_thumb1_' + rid).closest('.io_image_thumbbox').show(); } } } // Function to generate list view content on demand (global scope) generateListViewContent = function() { console.log('[IO List View] Generating list view content dynamically'); jQuery('.io_item2_list').each(function() { var $item = jQuery(this); // Skip if already generated if ($item.find('.io_list_view_content').length > 0) { return; } // Extract rental_id from the item var rentalId = $item.find('.item_rentalid').text().trim(); if (!rentalId) { console.warn('[IO List View] No rental_id found for item, skipping'); return; } // Read data from dynamically named global variables // var description = String(window['data_description_' + rentalId] || "").replace(/[\r\n]+/g, "").trim(); var indoorOutdoor = String(window.io_category_data[rentalId]["indoor_outdoor"] || "").replace(/[\r\n]+/g, "").trim(); var staff = String(window.io_category_data[rentalId]["staff"] || "").replace(/[\r\n]+/g, "").trim(); var electric = String(window.io_category_data[rentalId]["electric"] || "").replace(/[\r\n]+/g, "").trim(); var dimensions = String(window.io_category_data[rentalId]["dimensions"] || "").replace(/[\r\n]+/g, "").trim(); // Helper function to strip HTML tags from text var stripHtml = function(html) { var tmp = document.createElement("DIV"); tmp.innerHTML = html; return (tmp.textContent || tmp.innerText || "").trim(); }; // Helper function to escape HTML to prevent XSS var escapeHtml = function(text) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return text.replace(/[&"']/g, function(m) { return map[m]; }); }; // Strip HTML tags from description // description = stripHtml(description); // Build the HTML structure with escaped content var html = '
'; // html += '
' + escapeHtml(description) + '
'; html += '
'; // Setup field - only add if valid if (indoorOutdoor && indoorOutdoor !== '0' && indoorOutdoor.length > 0) { html += '
'; html += 'Setup:'; html += '' + escapeHtml(indoorOutdoor) + ''; html += '
'; } // Operators field - only add if valid var operatorsText = staff ? staff + ' Adult Supervision Required' : ""; if (operatorsText && operatorsText !== '0 Adult Supervision Required' && operatorsText !== 'Adult Supervision Required' && operatorsText !== '0') { html += '
'; html += 'Operators:'; html += '' + escapeHtml(operatorsText) + ''; html += '
'; } // Power field - only add if valid var powerText = electric ? electric + ' Outlets' : ""; if (powerText && powerText !== '0 Outlets' && powerText !== '0.00 Outlets' && powerText !== 'Outlets' && powerText !== '0') { html += '
'; html += 'Power:'; html += '' + escapeHtml(powerText) + ''; html += '
'; } // Size field - only add if valid if (dimensions && dimensions !== '0' && dimensions.length > 0) { html += '
'; html += 'Size:'; html += '' + escapeHtml(dimensions) + ''; html += '
'; } html += '
'; // close io_item_details_labeled html += '
'; // close io_list_view_content // Insert before the buttons container $item.find('.io_buttons_container').before(html); }); } jQuery(document).ready(function($) { jQuery(".io_item2_list").each(function(){ var rentalId = jQuery(this).find('.item_rentalid').text().trim(); if (io_categoryVariantImages == 'on'){ CategoryGallery(rentalId, window.io_category_data[rentalId]['rental_name'], window.io_category_data[rentalId]["images_arr"]); } }); console.log('[IO View Toggle] Document ready, initializing view toggle functionality'); // Check if category_id has a numeric value to identify actual category pages // This must happen before any view state is applied var categoryId = $('.category_id').text().trim(); var hasNumericCategoryId = categoryId && !isNaN(categoryId) && categoryId.length > 0; if (!hasNumericCategoryId) { console.log('[IO View Toggle] No valid numeric category ID found, this is not a category page - skipping initialization'); return; } console.log('[IO View Toggle] Category page detected with categoryId:', categoryId); $('body').addClass('io-has-category-id'); // Show the toggle buttons on category pages $('.io_view_toggle_container').show(); console.log('[IO View Toggle] Toggle buttons displayed for category page'); // Track if view toggle has been initialized var isInitialized = false; // Initialize view toggle functionality function initViewToggle(force) { // Skip if already initialized unless forced if (isInitialized && !force) { console.log('[IO View Toggle] Already initialized, skipping'); return; } console.log('[IO View Toggle] Initializing view toggle functionality'); // Check if toggle buttons exist if ($('.io_view_toggle_btn').length === 0) { console.warn('[IO View Toggle] Toggle buttons not found in DOM'); return; } console.log('[IO View Toggle] Found', $('.io_view_toggle_btn').length, 'toggle buttons'); // Check if category container exists if ($('.io_catdiv2').length === 0) { console.warn('[IO View Toggle] Category container (.io_catdiv2) not found'); return; } console.log('[IO View Toggle] Found', $('.io_catdiv2').length, 'category containers'); // Get saved view preference from localStorage var savedView = localStorage.getItem('io_category_view') || 'tile'; console.log('[IO View Toggle] Retrieved saved view preference:', savedView); // Set initial view $('.io_catdiv2').removeClass('tile-view list-view').addClass(savedView + '-view'); console.log('[IO View Toggle] Applied initial view class:', savedView + '-view'); // Update button states $('.io_view_toggle_btn').removeClass('active'); $('.io_view_toggle_btn[data-view="' + savedView + '"]').addClass('active'); console.log('[IO View Toggle] Updated button states, active button:', savedView); // Generate list view content if initial view is list if (savedView === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available yet'); } } // Log current items count var itemCount = $('.io_item2_list').length; console.log('[IO View Toggle] Found', itemCount, 'items in category'); // Handle toggle button clicks using native JavaScript for better compatibility // Remove any existing event listeners first $('.io_view_toggle_btn').off('click.viewToggle'); // Use native JavaScript addEventListener for more reliable event handling var buttons = document.querySelectorAll('.io_view_toggle_btn'); console.log('[IO View Toggle] Attaching event listeners to', buttons.length, 'buttons using native JS'); buttons.forEach(function(button) { // Remove any existing listener var newButton = button.cloneNode(true); button.parentNode.replaceChild(newButton, button); // Add fresh event listener newButton.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); var view = this.getAttribute('data-view'); console.log('[IO View Toggle] Button clicked (native listener), switching to view:', view); // Generate list view content if switching to list view if (view === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } // Update button states document.querySelectorAll('.io_view_toggle_btn').forEach(function(btn) { btn.classList.remove('active'); }); this.classList.add('active'); console.log('[IO View Toggle] Updated button active states'); // Update grid view var catdiv = document.querySelector('.io_catdiv2'); if (catdiv) { catdiv.classList.remove('tile-view', 'list-view'); catdiv.classList.add(view + '-view'); console.log('[IO View Toggle] Applied view class:', view + '-view'); } // Save preference localStorage.setItem('io_category_view', view); console.log('[IO View Toggle] Saved view preference to localStorage:', view); // Debug: Log current layout state setTimeout(function() { if (catdiv) { var containerClasses = catdiv.className; var visibleItems = document.querySelectorAll('.io_item2_list:not([style*="display: none"])').length; console.log('[IO View Toggle] Layout updated - Container classes:', containerClasses); console.log('[IO View Toggle] Visible items after view change:', visibleItems); // Check if list view content is properly shown/hidden if (view === 'list') { var visibleListContent = document.querySelectorAll('.io_list_view_content:not([style*="display: none"])').length; console.log('[IO View Toggle] Visible list content elements:', visibleListContent); } } }, 100); }, true); // Use capture phase console.log('[IO View Toggle] Event listener attached to button:', newButton.getAttribute('data-view')); }); console.log('[IO View Toggle] Event handlers attached successfully'); // Mark as initialized isInitialized = true; } // Initialize when page loads console.log('[IO View Toggle] Starting initial setup'); initViewToggle(); // Also initialize after dynamic content loads (if applicable) $(document).on('io_content_loaded', function() { console.log('[IO View Toggle] Dynamic content loaded event detected, reinitializing'); initViewToggle(); }); // Debug: Monitor for DOM changes that might affect our functionality if (typeof MutationObserver !== 'undefined') { var mutationTimeout; var lastItemCount = $('.io_item2_list').length; var observer = new MutationObserver(function(mutations) { // Debounce: clear existing timeout and set a new one clearTimeout(mutationTimeout); mutationTimeout = setTimeout(function() { var currentItemCount = $('.io_item2_list').length; // Only trigger if we have new items that weren't there before if (currentItemCount > lastItemCount) { console.log('[IO View Toggle] New items detected in DOM (' + lastItemCount + ' -> ' + currentItemCount + ')'); lastItemCount = currentItemCount; // If already initialized, just generate list view content for new items if in list view if (isInitialized) { var currentView = localStorage.getItem('io_category_view') || 'tile'; if (currentView === 'list') { console.log('[IO View Toggle] Generating list view content for new items'); if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } } else { // Not initialized yet, so initialize console.log('[IO View Toggle] Initializing due to new items'); initViewToggle(); } } }, 250); // 250ms debounce }); observer.observe(document.body, { childList: true, subtree: true }); console.log('[IO View Toggle] DOM mutation observer started'); } // Debug: Log window resize events that might affect responsive layout $(window).on('resize.viewToggle', function() { var windowWidth = $(window).width(); var currentView = $('.io_catdiv2').hasClass('list-view') ? 'list' : 'tile'; console.log('[IO View Toggle] Window resized to:', windowWidth, 'px, current view:', currentView); }); console.log('[IO View Toggle] Initialization complete'); });

window.io_category_data = window.io_category_data || {}; window.io_category_data['2078445'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2078445","rental_name":"Snow Cone Machine Rentals","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221217963\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222078445\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/snow-cone-machine_1698684135.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/snow-cone-machine_1698684135_big.jpg\u0022}}"};

Snow Cone Machine Rentals

from $0.00

Snow+Cone+Machine+Rentals

https://www.aspartyrental.com/rentals/concession-machine-rentals/snow-cone-machine-rentals/

2078445

Unlimited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['811345'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"811345","rental_name":"Apple Slicer (Does Not Include Supplies)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022165809\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022811345\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Apple Slicer_768637861.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Apple Slicer_768637861_big.jpg\u0022}}"};

Apple Slicer (Does Not Include Supplies)

from $275.00

Apple+Slicer+%28Does+Not+Include+Supplies%29

https://www.aspartyrental.com/rentals/concession-machine-rentals/apple-slicer-does-not-include-supplies/

811345

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1642601'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1642601","rental_name":"Caramel Apple Bar (Price per person)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222086067\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221642601\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Caramel-Apples-V2_1756321204.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Caramel-Apples-V2_1756321204_big.png\u0022}}"};

Caramel Apple Bar (Price per person)

from $6.00

Caramel+Apple+Bar+%28Price+per+person%29

https://www.aspartyrental.com/rentals/concession-machine-rentals/caramel-apple-bar-price-per-person/

1642601

Unlimited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2078329'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2078329","rental_name":"Cotton Candy Machine Rental","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221217931\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222078329\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/3017-00-000-econo-floss-cotton-candy-machine_800x_1698678133.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/3017-00-000-econo-floss-cotton-candy-machine_800x_1698678133_big.png\u0022}}"};

Cotton Candy Machine Rental

from $0.00

Cotton+Candy+Machine+Rental

https://www.aspartyrental.com/rentals/concession-machine-rentals/cotton-candy-machine-rental/

2078329

Unlimited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1844695'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"21\u0027\u0027","rental_id":"1844695","rental_name":"Deep Fryer 2 Basket","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221015327\u0022,\u0022rentalimage_createtime\u0022:\u00221681738514\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221681738514\u0022,\u0022rentalimage_itemid\u0022:\u00221844695\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/deep fryer_197491820.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/deep fryer_197491820_big.jpg\u0022}}"};

Deep Fryer 2 Basket

from $255.00

Deep+Fryer+2+Basket

https://www.aspartyrental.com/rentals/concession-machine-rentals/deep-fryer-2-basket/

1844695

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['793671'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"793671","rental_name":"Deep Freeze 8.7 cu ft","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022162875\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022793671\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/firg_671596025.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/firg_671596025_big.jpg\u0022}}"};

Deep Freeze 8.7 cu ft

from $100.00

Deep+Freeze+8.7+cu+ft

https://www.aspartyrental.com/rentals/concession-machine-rentals/deep-freeze-8-7-cu-ft/

793671

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['811341'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"811341","rental_name":"Fair Donuts Machine","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022165807\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022811341\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Fair Donut Machine_455265195.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Fair Donut Machine_455265195_big.jpg\u0022}}"};

Fair Donuts Machine

from $100.00

Fair+Donuts+Machine

https://www.aspartyrental.com/rentals/concession-machine-rentals/fair-donuts-per-person-machine/

811341

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['230699'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"L27\/W20\/H35","rental_id":"230699","rental_name":"Frozen Drink Machine 600 Oz (Pick Up Truck Only)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146651\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022230699\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-10-17 1.34.48 PM_1760722520.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-10-17 1.34.48 PM_1760722520_big.png\u0022}}"};

Frozen Drink Machine 600 Oz (Pick Up Truck Only)

from $250.00

Frozen+Drink+Machine+600+Oz+%28Pick+Up+Truck+Only%29

https://www.aspartyrental.com/rentals/concession-machine-rentals/frozen-drink-machine-600-oz-pick-up-truck-only/

230699

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216323'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216323","rental_name":"Funnel Cake Maker\/ Needs 240 Volt Generator","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022827519\u0022,\u0022rentalimage_createtime\u0022:\u00221667503136\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221667503136\u0022,\u0022rentalimage_itemid\u0022:\u0022216323\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/2167db0374b55578aac5f4a59be2433a.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/2167db0374b55578aac5f4a59be2433a.jpg\u0022}}"};

Funnel Cake Maker/ Needs 240 Volt Generator

from $0.00

Funnel+Cake+Maker%2F+Needs+240+Volt+Generator

https://www.aspartyrental.com/rentals/concession-machine-rentals/funnel-cake-maker-needs-generator/

216323

Limited

Dropdown

1

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2078483'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2078483","rental_name":"Grill Rentals","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221217979\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222078483\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/event-gas-grill (1)_1698686986.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/event-gas-grill (1)_1698686986_big.jpg\u0022}}"};

Grill Rentals

from $0.00

Grill+Rentals

https://www.aspartyrental.com/rentals/concession-machine-rentals/grill-rentals/

2078483

Unlimited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216363'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216363","rental_name":"Hot Dog Roller","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146661\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216363\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-10-17 1.39.54 PM_1760722825.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-10-17 1.39.54 PM_1760722825_big.png\u0022}}"};

Hot Dog Roller

from $0.00

Hot+Dog+Roller

https://www.aspartyrental.com/rentals/concession-machine-rentals/hot-dog-roller/

216363

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216427'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216427","rental_name":"Nacho Machine ","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820685\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216427\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/5300-bag-cheese-dispenser-perspective_1400x_1666797418.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/5300-bag-cheese-dispenser-perspective_1400x_1666797418_big.png\u0022}}"};

Nacho Machine

from $0.00

Nacho+Machine+

https://www.aspartyrental.com/rentals/concession-machine-rentals/nacho-machine/

216427

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2078427'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2078427","rental_name":"Popcorn Machine Rentals","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221217961\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222078427\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/popcornmachine_1698682372.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/popcornmachine_1698682372_big.png\u0022}}"};

Popcorn Machine Rentals

from $0.00

Popcorn+Machine+Rentals

https://www.aspartyrental.com/rentals/concession-machine-rentals/popcorn-machine-rental/

2078427

Unlimited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216465'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216465","rental_name":"Pretzel Display Warmer","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253795\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216465\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/ff2631953d45fa2981f82f0e1ccc69e4.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/ff2631953d45fa2981f82f0e1ccc69e4.jpg\u0022}}"};

Pretzel Display Warmer

from $0.00

Pretzel+Display+Warmer

https://www.aspartyrental.com/rentals/concession-machine-rentals/pretzel-warmer/

216465

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216475'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"216475","rental_name":"Pucker Powder","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253803\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216475\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pucker Powder_597045790.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pucker Powder_597045790_big.jpg\u0022}}"};

Pucker Powder

from $0.00

Pucker+Powder

https://www.aspartyrental.com/rentals/concession-machine-rentals/pucker-powder/

216475

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216585'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216585","rental_name":"Waffle Pro Maker","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253903\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216585\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/a5d176a14eafa95066f5f920bbfcd3d8.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/a5d176a14eafa95066f5f920bbfcd3d8.jpg\u0022}}"};

Waffle Pro Maker

from $0.00

Waffle+Pro+Maker

https://www.aspartyrental.com/rentals/concession-machine-rentals/waffle-pro-maker/

216585

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

Concession Machines Rentals In Dayton.

Popcorn Machine Rental, Cotton Candy Machine Rental, Snow Cone Machine Rental

 

Planning a Party and looking for Concession Machine Rentals? Check out our concession machine rentals at A&S Party Rental! Our concession rentals will set you apart.

 First we Have Popcorn Machine Rentals. Then we Have Snow Cone and Cotton Candy machine Rentals. Finally, We have slushy machine rentals, Apple Slicer Rentals, Chocolate Fountain Rentals, Funnel Cake Rentals and More. Also, A&S has so many options to choose from.  Who can resist the temptation of a funnel cake or a Frozen drink machine? Our Rental Machines will bring your party alive right away. 

 For Instance, March Madness with Nacho Cheese Dispensers is sure to be a hit ? Carnivals with cotton candy, snow cones, or a pretzel maker? School event with a hot dog roller? A&S Party Rental can provide it all! We have all the supplies necessary for each of our concession machine rentals as well.

 Finally, Don’t worry if you need attendants to help prepare and serve at your party, we can help with that too.  Also, don’t forget to check out our entertainment or extreme attraction options to make your event even more awesome. At A&S, we Bring Out The Fun In Everyone!

Check out our YouTube Channel, Facebook , Pinterest & TikTok

Want to know what our customers think of us and our concession machine rentals? Check out our reviews here.

Google Reviews  or F