Event‑Ready Mega Carnival Games Delivered to Lancaster, PA
Setting up an unforgettable day in Lancaster, PA? Trust Party Pros East Coast from start to finish. We supply crowd‑pleasing carnival games that transform ordinary spaces into mini‑midways. Skip the heavy lifting—our team covers transport, installation, coaching, and cleanup. Every unit is cleaned, safety‑inspected, and maintenance‑checked before it reaches you. Reserve today and see why Lancaster hosts rave about our stress‑free service.
Our Carnival Game Rentals
Browse our full selection of carnival booth games, tabletop classics, and high-impact attractions below.
Simply click the “Add to Quote” button on any game or package you want.
Add as many items as you like — then tap the floating Review Quote button (bottom-right of the page) to send your custom request.
Fast delivery + professional setup available for school carnivals, church fairs, corporate events, and private parties.
Booth & Tabletop Games
Classic Carnival Booth & Tabletop Games
Fast-play midway staples perfect for prize rows and steady guest traffic.
Ring Toss
Fast-play booth classic that works beautifully for prize lines and school carnivals.
Booth gameAll ages
Cover The Spot
Classic skill challenge that keeps guests coming back for one more try.
TabletopSkill-based
Cover the Star
Excellent booth-style toss game that adds variety to any midway.
Booth gameQuick rounds
Frog Hop
Family-friendly booth game that’s easy to understand and great for schools.
Booth gameKid-friendly
Baseball Pitch
Sports-style toss game that adds competitive energy to your carnival.
Sports boothMixed ages
Piggy Race
Lighthearted carnival favorite perfect for family festivals.
Booth gameFamily-friendly
Tic-Tac-Toe
Quick-play classic that keeps lines moving and rounds turning fast.
TabletopFast-play
Stand-It Bottle
Satisfying toss challenge that fits perfectly with other booth games.
TabletopSkill-based
Potty Toss
Funny carnival toss game that gets big reactions and breaks up traditional rows.
Booth gameComedy factor
Dice Game
Simple classic carnival toss that’s easy to run and great for all ages.
TabletopEasy-play
Troll Toss
Themed toss game that adds variety and visual interest to your booth lineup.
Booth gameThemed
Crazy Hat
Quirky midway game that pairs well with quick-play attractions.
Booth gameFast turnover
Can Smash
Timeless carnival staple that works beautifully in booth rows.
Booth gameClassic midway
Featured Attractions
High-Impact Carnival Attractions
Bigger crowd-drawing pieces that pair perfectly with booth games.
Dunk Tank Rental
Classic fundraiser and warm-weather crowd magnet.
Anchor attraction
High Striker
True crowd magnet strength game that adds height and excitement.
Feature piece
Inflatable Speed Pitch
High-energy radar challenge that adds a sports-zone feel.
Interactive add-on
Zap-A-Mole
Fast, visual, competitive game that’s a hit with teens.
Interactive add-on
Pop-A-Shot Basketball
Fast-paced hoops challenge perfect for sports-themed zones.
Interactive add-on
Milk the Cow
Larger attraction piece perfect for fairs and farm-themed events.
Attraction piece
Suggested Layouts
Popular Carnival Game Combinations
One-click packages for faster quoting — perfect starting points for any event.
Classic School Carnival Row
Strong for elementary schools, PTO events, and church fairs.
Ring Toss
Frog Hop
Can Smash
Tic-Tac-Toe
Cover The Spot
Festival Midway Mix
Combines quick-play booth games with one larger crowd-drawing feature.
High Striker
Ring Toss
Cover the Star
Stand-It Bottle
Dice Game
High-Energy Challenge Zone
Great for teens, colleges, and corporate family days.
Inflatable Speed Pitch
Zap-A-Mole
Pop-A-Shot Basketball
Baseball Pitch
High Striker
Included popular carnival attractions
Please choose two different tent games for this package.
";
document.body.appendChild(overlay);
overlay.addEventListener("click", function(ev){ if(ev.target === overlay){ closeModal(); } });
overlay.querySelector(".ppe-carnival-cancel").addEventListener("click", closeModal);
overlay.querySelector(".ppe-carnival-confirm").addEventListener("click", confirmSelection);
overlay.querySelector("#ppe-tent-game-one").addEventListener("change", refreshSummary);
overlay.querySelector("#ppe-tent-game-two").addEventListener("change", refreshSummary);
return overlay;
}
function openModal(btn){
currentButton = btn;
var cards = Array.prototype.slice.call(document.querySelectorAll(".pp-package"));
var card = btn.closest(".pp-package");
currentIndex = Math.max(0, cards.indexOf(card));
var pkg = aaronsburgPackages[currentIndex] || aaronsburgPackages[0];
var overlay = ensureModal();
overlay.querySelector("h3").textContent = pkg.title;
overlay.querySelector(".ppe-carnival-chooser-intro").textContent = currentIndex === 0 ? "Choose the two carnival games that should run under the tent for this package." : "Choose the two tent games. The popular attraction items stay included so the package keeps its crowd-drawing value.";
var
var two = overlay.querySelector("#ppe-tent-game-two");
while(one.firstChild){ one.removeChild(one.firstChild); }
while(two.firstChild){ two.removeChild(two.firstChild); }
tentOptions.forEach(function(item){ one.appendChild(makeOption(item, pkg.tent[0])); two.appendChild(makeOption(item, pkg.tent[1])); });
overlay.querySelector(".ppe-carnival-fixed-title").style.display = pkg.fixed.length ? "block" : "none";
overlay.querySelector(".ppe-carnival-fixed-list").style.display = pkg.fixed.length ? "flex" : "none";
var fixedList = overlay.querySelector(".ppe-carnival-fixed-list");
while(fixedList.firstChild){ fixedList.removeChild(fixedList.firstChild); }
pkg.fixed.forEach(function(item){ var span = document.createElement("span"); span.className = "ppe-carnival-pill"; span.textContent = item; fixedList.appendChild(span); });
overlay.classList.add("is-open");
refreshSummary();
}
function closeModal(){
var overlay = document.querySelector(".ppe-carnival-chooser-overlay");
if(overlay){ overlay.classList.remove("is-open"); }
}
function selectedItems(){
var overlay = ensureModal();
var pkg = aaronsburgPackages[currentIndex] || aaronsburgPackages[0];
var
var two = overlay.querySelector("#ppe-tent-game-two").value;
return {tent:[one,two], fixed:pkg.fixed.slice(), title:pkg.title};
}
function refreshSummary(){
var overlay = ensureModal();
var chosen = selectedItems();
var warning = overlay.querySelector(".ppe-carnival-warning");
if(chosen.tent[0] === chosen.tent[1]){ warning.classList.add("is-visible"); }
else { warning.classList.remove("is-visible"); }
var items = chosen.tent.concat(chosen.fixed);
overlay.querySelector(".ppe-carnival-summary").textContent = "Package to add: " + items.join(", ") + ".";
}
function confirmSelection(){
var chosen = selectedItems();
if(chosen.tent[0] === chosen.tent[1]){ refreshSummary(); return; }
var items = chosen.tent.concat(chosen.fixed);
var cards = Array.prototype.slice.call(document.querySelectorAll(".pp-package"));
var card = currentButton ? currentButton.closest(".pp-package") : cards[currentIndex];
var ul = card ? card.querySelector("ul") : null;
if(ul){
while(ul.firstChild){ ul.removeChild(ul.firstChild); }
items.forEach(function(item){ var li = document.createElement("li"); li.textContent = item; ul.appendChild(li); });
}
if(currentButton){ updateButton(currentButton, chosen.title, items); }
closeModal();
window.__ppeCarnivalChooserBypass = true;
if(currentButton){ currentButton.click(); }
window.setTimeout(function(){ window.__ppeCarnivalChooserBypass = false; }, 250);
}
document.addEventListener("click", function(ev){
var btn = ev.target && ev.target.closest ? ev.target.closest(".pp-package .package-btn,.pp-package button.pp-add-to-quote") : null;
if(!btn){ return; }
if(window.__ppeCarnivalChooserBypass){ return; }
ev.preventDefault();
ev.stopPropagation();
if(ev.stopImmediatePropagation){ ev.stopImmediatePropagation(); }
openModal(btn);
}, true);
applyAaronsburgPackages();
window.setTimeout(applyAaronsburgPackages, 2600);
})();
Rent Fun Carnival Games in Lancaster PA | Ring Toss, Dunk Tank & More