Photo Booth Rentals in Dayton-

items
Set Event Date

Novelty and Photo Rentals for Rent

24271

Novelty & photo rentals in Dayton, Ohio — photobooths, audio guest book phones, silent disco, wax hands, ideal for company picnics and celebrations.

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

Novelty & Photo Rentals in Dayton, Ohio

Add something unique, interactive, and unforgettable to your next event with A&S Party Rental’s novelty and photo rentals in Dayton! Perfect for company picnics, weddings, school events, and family celebrations, our lineup brings laughter, creativity, and memories that last.

Strike a pose with our photobooths, leave heartfelt messages using our audio guest book phones, dance the night away with silent disco headsets, or create a custom keepsake with our crowd-favorite wax hands station.

Whether you’re planning a company picnic, wedding, or graduation party, our novelty and photo rentals turn your event into an interactive experience guests will love.

Say cheese, make memories, and have fun—contact A&S Party Rental today to reserve your novelty and photo attractions in Dayton!

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['1694415'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"1694415","rental_name":"360 Ultimate Social Photo Booth","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022838167\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221694415\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/360-photo-booth-rental-dallas_1668194084.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/360-photo-booth-rental-dallas_1668194084_big.jpg\u0022}}"};

360 Ultimate Social Photo Booth

from $1,500.00

360+Ultimate+Social+Photo+Booth

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/360-ultimate-social-photo-booth/

1694415

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['2711029'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2711029","rental_name":"Audio Guestbook - Recording Phone","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221817493\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222711029\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/audioguestbook_1741382713.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/audioguestbook_1741382713_big.png\u0022}}"};

Audio Guestbook – Recording Phone

from $200.00

Audio+Guestbook+-+Recording+Phone

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/audio-guestbook-recording-phone/

2711029

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['1872401'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1872401","rental_name":"Black Lights - Small","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146675\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221872401\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/unnamed (7)_1760724815.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/unnamed (7)_1760724815_big.jpg\u0022}}"};

Black Lights – Small

from $20.00

Black+Lights+-+Small

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/black-lights-small/

1872401

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['1267053'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1267053","rental_name":"BYOBouquet Flower Bar","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820991\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221267053\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/BJ-hHjgU_1666807039.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/BJ-hHjgU_1666807039_big.jpeg\u0022}}"};

BYOBouquet Flower Bar

from $300.00

BYOBouquet+Flower+Bar

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/byobouquet-flower-bar/

1267053

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['2211435'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2211435","rental_name":"Flower Wall 8x8 Pampas","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221356735\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211435\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pampaswall_1709241578.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pampaswall_1709241578_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221357163\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211435\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pampas_7_1709241580.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pampas_7_1709241580_big.png\u0022}}"};

Flower Wall 8×8 Pampas

from $1,200.00

Flower+Wall+8×8+Pampas

https://www.aspartyrental.com/dayton/inventory/decor-rentals/caricature-artist-2-hours/

2211435

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['2211427'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2211427","rental_name":"Flower Wall 8x8 Yaya","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221356731\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211427\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yayawall_1709241628.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yayawall_1709241628_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221357165\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211427\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yaya_6_1709241630.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yaya_6_1709241630_big.png\u0022}}"};

Flower Wall 8×8 Yaya

from $1,200.00

Flower+Wall+8×8+Yaya

https://www.aspartyrental.com/dayton/inventory/decor-rentals/flower-wall-8×8-yaya/

2211427

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['3042355'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"3042355","rental_name":"Friendship Bracelet Creation Station","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222131881\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223042355\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/frienshipbrac_1759430364.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/frienshipbrac_1759430364_big.jpg\u0022}}"};

Friendship Bracelet Creation Station

from $500.00

Friendship+Bracelet+Creation+Station

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/friendship-bracelet-creation-station/

3042355

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['216499'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"216499","rental_name":"Sand Art (up to 200)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253827\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216499\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/3300f23b322eeb999d2e996172b0368f.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/3300f23b322eeb999d2e996172b0368f.jpg\u0022}}"};

Sand Art (up to 200)

from $500.00

Sand+Art+%28up+to+200%29

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/sand-art-up-to-200/

216499

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['1178765'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"10x8x10","rental_id":"1178765","rental_name":"Santa Inflatable Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022245895\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221178765\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Santa Inflatable Chair_622198545.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Santa Inflatable Chair_622198545_big.jpg\u0022}}"};

Santa Inflatable Chair

from $300.00

Santa+Inflatable+Chair

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/santa-chair/

1178765

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['1789619'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"1789619","rental_name":"Silent Disco (100 Headsets) *Clients Must provide Wifi","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221255693\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221789619\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/disco_1759422143.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/disco_1759422143_big.jpg\u0022}}"};

Silent Disco (100 Headsets) *Clients Must provide Wifi

from $1,500.00

Silent+Disco+%28100+Headsets%29+%2AClients+Must+provide+Wifi

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/silent-disco-100-headsets-clients-must-provide-wifi/

1789619

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['948785'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"3\u0027x3\u0027x5\u0027","rental_id":"948785","rental_name":"Social Photo Booth","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221273931\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022948785\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2024-01-03 4.09.00 PM_1704319835.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2024-01-03 4.09.00 PM_1704319835_big.png\u0022}}"};

Social Photo Booth

from $550.00

Social+Photo+Booth

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/social-photo-booth-min-3-hrs-100-per-additional-hr-2/

948785

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['216525'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216525","rental_name":"Spin Art","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222172855\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216525\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/spinart_1762897373.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/spinart_1762897373_big.jpeg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222172859\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216525\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-11 4.46.21 PM_1762897621.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-11 4.46.21 PM_1762897621_big.png\u0022}}"};

Spin Art

from $0.00

Spin+Art

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/blush-satin-chair-sash/

216525

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['3042359'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"3042359","rental_name":"Tie Dye Creation Station Per Person","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222131883\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223042359\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/tiedyestation_1759430510.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/tiedyestation_1759430510_big.jpg\u0022}}"};

Tie Dye Creation Station Per Person

from $5.00

Tie+Dye+Creation+Station+Per+Person

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/tie-dye-creation-station-per-person/

3042359

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['1137093'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"1137093","rental_name":"Wax Hands Up to 4 hours","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222172861\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221137093\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/wax-hands_1762897733.gif\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/wax-hands_1762897733_big.gif\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022524341\u0022,\u0022rentalimage_createtime\u0022:\u00221634832864\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221634832864\u0022,\u0022rentalimage_itemid\u0022:\u00221137093\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wax Hands_240083523.jfif\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Wax Hands_240083523_big.jfif\u0022}}"};

Wax Hands Up to 4 hours

from $1,500.00

Wax+Hands+Up+to+4+hours

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/wax-hands-up-to-4-hours/

1137093

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['216199'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"8x7x7","rental_id":"216199","rental_name":"Big Red Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253565\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216199\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Big Red Chair_840245429.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Big Red Chair_840245429_big.jpg\u0022}}"};

Big Red Chair

from $0.00

Big+Red+Chair

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/big-red-chair/

216199

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['216317'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216317","rental_name":"Foam Dance Party (Min. 4 hr rental - Must Have Dedicated Wat","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253671\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216317\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/b747f1d283042cdf5de42ba4fa0bf586.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/b747f1d283042cdf5de42ba4fa0bf586.jpg\u0022}}"};

Foam Dance Party (Min. 4 hr rental – Must Have Dedicated Wat

from $1,100.00

Foam+Dance+Party+%28Min.+4+hr+rental+-+Must+Have+Dedicated+Wat

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/foam-dance-party-must-have-dedicated-water-supply/

216317

Time Based

Textbox

1

Start: End:

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['216441'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"216441","rental_name":"Photo Booth Props","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820999\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216441\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/81SsAM8V0oL_1666807269.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/81SsAM8V0oL_1666807269_big.jpg\u0022}}"};

Photo Booth Props

from $0.00

Photo+Booth+Props

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/photo-booth-props/

216441

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['216445'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"","rental_id":"216445","rental_name":"Photo View Finders","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253779\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216445\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/0cc0a3bcb816fcf9f10127841778d043.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/0cc0a3bcb816fcf9f10127841778d043.png\u0022}}"};

Photo View Finders

from $0.00

Photo+View+Finders

https://www.aspartyrental.com/dayton/inventory/photo-booth-rentals/photo-view-finders/

216445

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['658337'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"15\u0027x15\u0027x25\u0027","rental_id":"658337","rental_name":"Human Snow Globe (Snowman) Indoors Only Attendant Required","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022147681\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022658337\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Human Snow Globe 2018_722840764.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Human Snow Globe 2018_722840764_big.jpg\u0022}}"};

Human Snow Globe (Snowman) Indoors Only Attendant Required

from $800.00

Human+Snow+Globe+%28Snowman%29+Indoors+Only+Attendant+Required

https://www.aspartyrental.com/dayton/inventory/winter-event-rental/human-snow-globe/

658337

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();
}
});
});

Check out our YouTube Channel, Facebook , Pinterest & TikTok

Want to know what our customers think of us? Check out our reviews here.

Google Reviews  or Facebook Reviews.