About The Community

Hello! We are the Creative Collective, a group of creative content creators. What is the community about? We are looking to support other creatives on their endeavors. We have Artists, Gamers, Crafters, and much more! We are always looking for new creatives to join us, so feel free to apply!

Interested In Joining?


Click "Apply" and fill out the following info below, or contact us through the email option at the bottom of the page.

OUR NEWEST MEMBERS
Member One
SunwardSona
Member Two
Semebay
Member Three
N0tDrPhill
Member Four
Miktastic
const newestTrack = document.getElementById('newestTrack'); const newestOriginal = Array.from(newestTrack.children); const newestCardWidth = 220 + 30; const newestNeeded = Math.ceil((window.innerWidth * 3) / (newestOriginal.length * newestCardWidth)) + 1; for(let i = 0; i < newestNeeded; i++){ newestOriginal.forEach(card => newestTrack.appendChild(card.cloneNode(true))); } const newestLoop = newestOriginal.length * newestCardWidth; let newestPos = 0; function newestStep(){ newestPos -= 0.4; if(Math.abs(newestPos) >= newestLoop) newestPos = 0; newestTrack.style.transform = 'translateX(' + newestPos + 'px)'; requestAnimationFrame(newestStep); } requestAnimationFrame(newestStep);
Get In Touch

Our Members

RoyaRampage
Marzyks
Twisted Cherry
Emerald Rose20
Panda Potions
Dorkacorn
Caffin Tales
Pytes Bytes
Widget0712
Miktastic
Rimican
Starlithearts
TrulyBloom
MiraPawlitaEnVT
MagicalMoonie
Shiatori
Snxfall
CaptCasa
Lilwolftru
KyIsAKiwiTTV
AiyannaArt
ShockAndAwh
VivianViatrix
N0tDrPhill
Semebay
SunwardSona
Name
Name
Name
Name
Name
Name
Name
Name
Name
Name
MEET THE ADMINS
The people behind Creative Collective
mascot
Admin One
Co-Founder & Admin
Jommehs
Just a lil dude | Mech, Horror & Cyprid enthusiasts.
Admin Two
Co-Founder & Admin
HighWithSky
I am a Queer Content creator and Artist! I stream on twitch and take commissions on Vgen!
mascot

MEET THE MODS
The people keeping everything running smoothly
Moderator
Haumaida
Skye Haumaida your intergalactical lore keeper Vtuber.
Moderator
Sammy Panda
My name is SammyPanda and I'm a stay at home mom. I mostly play Dead By Daylight with a little bit of variety and arts and crafts mixed in.
Moderator
Starrabee
A Lesbian Bee-witch who draws and yaps far too much.
Moderator
Whateverseason
Hiya! I’m Season, your friendly neighborhood clown! Here to laugh and have a good time while playing games and making art!
function filterItems(cat,btn){ document.querySelectorAll('.filter-btn').forEach(b=>b.classList.remove('active')); btn.classList.add('active'); document.querySelectorAll('.sc-card').forEach(c=>{ c.parentElement.style.display=(cat==='all'||c.dataset.category===cat)?'block':'none'; }); }
Creative Collective — Application
Interested in joining the Creative Collective? Fill out this form and tell us about you! ✦
1
Select all that apply
YouTuber
Streamer
Artist
Musician
Photographer
Writer
Podcaster
Other
2
Pick your formats
Short form
Long form
Live streams
Reels / Shorts / TikToks
Podcasts
Blogs / Articles
Tutorials
Let's Play
Vlogs / IRL
Other
3
Paste any relevant links (YouTube, Twitch, Instagram, TikTok, Twitter, etc.)
4
Share a link to your work — Google Drive, VGen, personal site, etc.
5
6
Crafts, music, film, games — anything creative that moves you!
7
8
Select all that apply
Discord
Collabs
Streaming Events
Sharing Content
Events / Meetups
Feedback
All of the above
You're not required to do both — we just want to know more about you!
10
⚠ Disclaimer

All applicants who use Generative AI for art will not be accepted into the Creative Collective.

Send My Application ✦
function toggleChip(el){ const color = el.getAttribute('data-color'); const activeClass = 'active-' + color; if(el.classList.contains(activeClass)){ el.classList.remove(activeClass); } else { el.classList.add(activeClass); } } function getChips(container){ return Array.from(container.querySelectorAll('.chip[class*="active-"]')).map(c => c.textContent).join(', '); } function submitForm(e){ e.preventDefault(); const allChipContainers = document.querySelectorAll('.cc-chips'); const typeChips = getChips(allChipContainers[0]); const formatChips = getChips(allChipContainers[1]); const interactChips = getChips(allChipContainers[2]); const typeOther = document.getElementById('type-other').value.trim(); const socials = document.getElementById('socials').value.trim(); const portfolioLink = document.getElementById('portfolio-link').value.trim(); const inspoCr = document.getElementById('inspo-creators').value.trim(); const inspoArt = document.getElementById('inspo-art').value.trim(); const heard = document.getElementById('heard-from').value.trim(); const interactMore = document.getElementById('interact-more').value.trim(); const gameCreative = document.getElementById('game-creative').value.trim(); const subject = encodeURIComponent('Creative Collective Application'); const body = encodeURIComponent( 'CREATIVE COLLECTIVE APPLICATION\n' + '================================\n\n' + '1. Content Creator Type:\n' + (typeChips || 'Not selected') + (typeOther ? '\n Other: ' + typeOther : '') + '\n\n' + '2. Content Format:\n' + (formatChips || 'Not selected') + '\n\n' + '3. Socials / Links:\n' + (socials || 'N/A') + '\n\n' + '4. Portfolio:\n' + (portfolioLink || 'N/A') + '\n\n' + '5. Creators I Look Up To:\n' + (inspoCr || 'N/A') + '\n\n' + '6. Most Inspirational Piece of Art:\n' + (inspoArt || 'N/A') + '\n\n' + '7. How I Heard About the Creative Collective:\n' + (heard || 'N/A') + '\n\n' + '8. How I Plan to Interact with the Community:\n' + (interactChips || 'Not selected') + (interactMore ? '\n More: ' + interactMore : '') + '\n\n' + '9. Go-To Game & Creative Thing:\n' + (gameCreative || 'N/A') + '\n\n' + '--------------------------------\n' + 'I confirm I do not use Generative AI for my art.\n' ); window.location.href = 'mailto:[email protected]?subject=' + subject + '&body=' + body; }