AVAILABLE FOR STAFF POSITIONS

Hi, I'm

Professional Discord freelancer specializing in Discord setup, community management, staffing systems, and French translation. Helping communities create organized, professional, and enjoyable experiences.

About Me

Services

⚙️ Discord Setup

Professional channels, permissions, bots, roles, ticket systems, and layouts designed to give your community a polished and organized appearance.

More Info →

👑 Discord Management

Community management, moderation systems, engagement improvements, and organization to help maintain active and healthy servers.

More Info →

🛡 Discord Staffing

Staff recruitment, applications, training systems, and organization to maintain professional moderation teams.

More Info →

🇫🇷 French Translation

English ↔ French translation services for Discord communities, announcements, embeds, and documents.

More Info →

Experience

🏰 Founder

ShatterMC
👥 300+ Members

Oversaw server operations, moderation systems, and staff management.

⚔ Owner

RiftSMP
👥 500+ Members

Managed events, development, and community operations.

🛡 Senior Moderator

SMP Finder
👥 50,000+ Members

Moderation, conflict resolution, and staff coordination.

🛡 Moderator

Shady SMP
👥 300+ Members

Maintained a positive environment and assisted with moderation.

⭐ Head Staff

SMP Wars
👥 20,000+ Members

Led the staff team and coordinated community events.

🛡 Head Moderator

Twisted Lifesteal
👥 900+ Members

Managed moderation procedures and community support.

Why Choose Me

⭐ Experienced Leadership

Experience leading and moderating communities ranging from small SMPs to servers with over 50,000 members.

⚡ Reliable Service

I strive to provide professional communication, quality work, and attention to detail on every project.

🌎 English & French Support

Bilingual support for communities, announcements, and documents.

🤝 Community Focused

Dedicated to helping communities create enjoyable and welcoming environments.

Frequently Asked Questions

❓ What services do you offer?

Discord setup, Discord management, staffing systems, and French translation.

💬 How can I contact you?

Through Discord (potateyy) or email at potateyy1@outlook.com.

🌎 Do you work with small communities?

Absolutely! I enjoy helping communities of all sizes.

🛡 Are you available for staff positions?

Yes! I'm currently available for staff positions and commissions.

Statistics

15+

Communities Managed

Experience helping communities ranging from small SMPs to large public servers.

50K+

Largest Community Experience

Senior Moderator experience in communities with over 50,000 members.

100K+

Combined Community Reach

Experience across communities totaling more than one hundred thousand members.

4+

Years of Experience

Years spent building communities and managing teams.

7+

Leadership Positions

Leadership and moderation roles held across multiple communities.

Client Reviews

Trusted by server owners and communities.

★★★★★

"Potateyy completely transformed our Discord server. Everything was organized professionally and exceeded expectations."

— Caliber • ShatterMC

★★★★★

"Excellent communication and amazing staffing systems. Highly recommended."

— h2mks • DonutMarket

★★★★★

"Reliable and professional. The final setup looked fantastic."

— Blob • SMPX

★★★★★

"Very friendly and knowledgeable. Helped improve our moderation systems."

— Blazey Bean • HobbitSMP

★★★★★

"Easy to work with and very professional. Would recommend to anyone."

— Zrick • Plugin Sales

Get In Touch

💬 Discord

potateyy

Preferred contact method for projects and commissions.

📋 Click to Copy

📧 Email

potateyy1@outlook.com

Available for inquiries and collaborations.

📋 Click to Copy

🌎 Time Zone

EDT (UTC−4)

Usually available during afternoons and evenings.

Let's Build Something Amazing

Whether you're starting a new community or improving an existing one, I'd love to help bring your ideas to life.

✓ Copied!
/* ========================= THEME TOGGLE ========================= */ const themeToggle = document.getElementById("themeToggle"); if(themeToggle){ themeToggle.onclick=()=>{ document.body.classList.toggle("light-mode"); themeToggle.innerHTML = document.body.classList.contains("light-mode") ? "☀️" : "🌙"; }; } /* ========================= MOBILE MENU ========================= */ function toggleMenu(){ document .getElementById("navLinks") .classList.toggle("show"); } /* ========================= ABOUT CAROUSEL ========================= */ const aboutSlides = document.querySelectorAll(".about-slide"); let currentAbout=0; function showAbout(index){ aboutSlides.forEach(slide=>{ slide.classList.remove("active"); }); aboutSlides[index].classList.add("active"); } function nextAbout(){ currentAbout++; if(currentAbout>=aboutSlides.length){ currentAbout=0; } showAbout(currentAbout); } function prevAbout(){ currentAbout--; if(currentAbout<0){ currentAbout= aboutSlides.length-1; } showAbout(currentAbout); } if(aboutSlides.length>0){ showAbout(0); } /* ========================= EXPERIENCE BUTTON ========================= */ function toggleExperience(){ const section = document.getElementById("extraExperience"); const button = document.getElementById("viewMoreBtn"); const arrow = document.getElementById("arrow"); section.classList.toggle("show"); button.classList.toggle("open"); if(section.classList.contains("show")){ button.firstChild.textContent = "View Less Experience "; arrow.innerHTML="▲"; }else{ button.firstChild.textContent = "View More Experience "; arrow.innerHTML="▼"; } } /* ========================= REVIEWS ========================= */ const reviews = document.querySelectorAll(".review"); const reviewDots = document.querySelectorAll(".review-dot"); let currentReview=0; function showReview(index){ reviews.forEach(review=>{ review.classList.remove("active"); }); reviewDots.forEach(dot=>{ dot.classList.remove("active"); }); reviews[index].classList.add("active"); reviewDots[index].classList.add("active"); } function nextReview(){ currentReview++; if(currentReview>=reviews.length){ currentReview=0; } showReview(currentReview); } function prevReview(){ currentReview--; if(currentReview<0){ currentReview= reviews.length-1; } showReview(currentReview); } if(reviews.length>0){ showReview(0); setInterval(nextReview,7000); } reviewDots.forEach((dot,index)=>{ dot.onclick=()=>{ currentReview=index; showReview(index); }; }); /* ========================= COPY POPUP ========================= */ const popup = document.getElementById("copyPopup"); function showPopup(message){ popup.innerHTML=message; popup.classList.add("show"); setTimeout(()=>{ popup.classList.remove("show"); },2000); } /* ========================= COPY DISCORD ========================= */ function copyDiscord(){ navigator.clipboard .writeText("potateyy") .then(()=>{ showPopup( "✓ Discord username copied!" ); }) .catch(()=>{ showPopup( "Unable to copy." ); }); } /* ========================= COPY EMAIL ========================= */ function copyEmail(){ navigator.clipboard .writeText( "potateyy1@outlook.com" ) .then(()=>{ showPopup( "✓ Email copied!" ); }) .catch(()=>{ showPopup( "Unable to copy." ); }); } /* ========================= TYPING EFFECT ========================= */ const typing = document.getElementById("typing"); const text = "Potateyy"; let charIndex=0; function type(){ if(charIndex{ mouse.x=e.x; mouse.y=e.y; } ); class Particle{ constructor(){ this.x= Math.random()*canvas.width; this.y= Math.random()*canvas.height; this.size=2; this.dx= (Math.random()-.5)*.5; this.dy= (Math.random()-.5)*.5; } update(){ this.x+=this.dx; this.y+=this.dy; if(mouse.x){ const distX= mouse.x-this.x; const distY= mouse.y-this.y; this.x-=distX*.0008; this.y-=distY*.0008; } } draw(){ ctx.beginPath(); ctx.arc( this.x, this.y, this.size, 0, Math.PI*2 ); ctx.fillStyle= "rgba(255,255,255,.15)"; ctx.fill(); } } for(let i=0;i<120;i++){ particles.push( new Particle() ); } function animate(){ ctx.clearRect( 0, 0, canvas.width, canvas.height ); particles.forEach(p=>{ p.update(); p.draw(); }); requestAnimationFrame( animate ); } animate(); } /* ========================= SMOOTH SCROLL ========================= */ document .querySelectorAll( 'a[href^="#"]' ) .forEach(anchor=>{ anchor.addEventListener( "click", function(e){ e.preventDefault(); document.querySelector( this.getAttribute("href") ).scrollIntoView({ behavior:"smooth" }); }); });