r/LoveCymatics

Image 1 — Scammer Alert: u/Imaginary-Craft-4779
Image 2 — Scammer Alert: u/Imaginary-Craft-4779
Image 3 — Scammer Alert: u/Imaginary-Craft-4779

Scammer Alert: u/Imaginary-Craft-4779

I agreed to trade sample packs with u/Imaginary-Craft-4779.
He told me he was uploading his library, said “link coming now,” and I sent my sample pack as agreed. After that, he never sent his files and stopped responding.
Just posting this so others can be careful when trading sample packs. Screenshots attached.

u/bnfthedoc — 3 days ago

Cymatics Stealing Vocal Lyrics now?

https://reddit.com/link/1uhl3r3/video/g5beh7ivqx9h1/player

I was looking for 140bpm acapellas to make a remix song (for melodic dubstep). Then i come across a literally identical vocal - copied from "What You Won’t Do for Love - Bobby Caldwell"

And the vocal sample is literally named "April"! This is an abnormal discovery and this sample is in the PHEONIX LAUNCH EDITION. Cymatics is so scummy and i had this sample pack in my hard drive for a long time! Video is attatched below.

reddit.com
u/Anxious-Objective680 — 8 days ago

Cymatics June 25th bypass Offer Expired & Unlock Hidden Deals

Step-by-step Guide:

  1. Go to the locked Cymatics offer page: https://cymatics.fm/pages/cymatics-u5dd5
  2. Press F12 or Ctrl + Shift + I (Windows) / Cmd + Option + I (Mac) to open your browser's Developer Tools.
  3. Click on the Console tab.
  4. Paste the code below and hit Enter.

The Code:

(() => {
    'use strict';

    const CARD_COUNT = 30;

    const SPECIAL_CARDS = {
        textOverride: { 11: 'Shop Now', 30: 'Add to Cart - $250' },
        defaultText:  { variant: 'Add to Cart', offer: 'Get Now' }
    };

    const CYM_VARIANTS = {
        1: '42630857949269',  2: '42630870073429',  12: '42636739117141',
        13: '42636749963349', 14: '42636751405141',  15: '42636757532757',
        16: '42636760678485', 17: '42636763332693',  18: '42636765823061',
        19: '42636767658069', 20: '42636775194709',  21: '40289438466133',
        22: '40289491320917', 23: '40289732591701',  24: '40428390416469',
        25: '42520328962133', 26: '40862687789141',  27: '42636770312277',
        28: '42390647111765', 29: '42638166720597',  30: '42646788079701'
    };

    const CYM_OFFERS = {
        3:  'https://cymatics.fm/pages/legacy-mystery-pack-offer',
        4:  'https://cymatics.fm/pages/plans-livestream-offer',
        5:  'https://cymatics.fm/pages/diablo-drum-enhancer-plugin-livestream-offer',
        6:  'https://cymatics.fm/pages/26-packs-for-3-each-livestream-offer',
        7:  'https://cymatics.fm/pages/project-one-main',
        8:  'https://cymatics.fm/products/15-for-15-2026-offer',
        9:  'https://cymatics.fm/pages/2026-artist-collection-offer',
        10: 'https://cymatics.fm/products/808-day-collection-2025-edition',
        11: 'https://cymatics.fm/collections/store'
    };

    if (!window.__cymUnlocked__) {
        const _originalFetch = window.fetch;

        window.fetch = async function (...args) {
            const url = typeof args[0] === 'string' ? args[0]
                      : args[0] instanceof Request  ? args[0].url
                      : '';

            if (url.includes('firebaseio.com/cymatics')) {
                const fakeData = {};
                for (let i = 1; i <= CARD_COUNT; i++) {
                    fakeData[i] = 'unlocked';
                }
                return new Response(JSON.stringify(fakeData), {
                    status: 200,
                    headers: { 'Content-Type': 'application/json' }
                });
            }

            return _originalFetch.apply(this, args);
        };

        window.__cymUnlocked__ = true;
        console.info('[CYM] Fetch interceptor installed.');
    }

    window.lwgActive = true;

    const STYLE_ID = '__cym-unlock-style__';
    if (!document.getElementById(STYLE_ID)) {
        const style = document.createElement('style');
        style.id = STYLE_ID;
        style.textContent = `
            #lwg-expired,
            #livestreamEndedModal { display: none !important; }

            body { overflow: auto !important; }

            .lwg-buy,
            .dl-card__cta { pointer-events: auto !important; opacity: 1 !important; }
        `;
        document.head.appendChild(style);
        console.info('[CYM] Styles injected.');
    }

    const cards = document.querySelectorAll('.dl-card');

    if (!cards.length) {
        console.warn('[CYM] No .dl-card elements found. Check page state or timing.');
    }

    cards.forEach(card => {
        const num = parseInt(card.getAttribute('data-card-num'), 10);
        if (isNaN(num)) {
            console.warn('[CYM] Skipping card with invalid data-card-num:', card);
            return;
        }

        card.classList.remove('dl-card--locked', 'dl-card--removed');
        card.classList.add('dl-card--unlocked');
        card.setAttribute('data-state', 'unlocked');

        const lockWrap = card.querySelector('.dl-card__lock-wrap');
        if (lockWrap) lockWrap.style.display = 'none';

        const img = card.querySelector('.dl-card__img');
        if (img) {
            const realSrc = img.getAttribute('data-real-img');
            if (realSrc) img.src = realSrc;
        }

        const btn = card.querySelector('.dl-card__cta');
        if (!btn) return;

        btn.disabled = false;
        btn.removeAttribute('disabled');
        btn.classList.remove('is-expired');
        btn.style.setProperty('display',         'block', 'important');
        btn.style.setProperty('pointer-events',  'auto',  'important');
        btn.style.setProperty('opacity',         '1',     'important');

        if (CYM_OFFERS[num]) {
            btn.textContent = SPECIAL_CARDS.textOverride[num] ?? SPECIAL_CARDS.defaultText.offer;
            btn.setAttribute('data-offer-url', CYM_OFFERS[num]);
            btn.removeAttribute('data-variant-id');

        } else if (CYM_VARIANTS[num]) {
            btn.textContent = SPECIAL_CARDS.textOverride[num] ?? SPECIAL_CARDS.defaultText.variant;
            btn.setAttribute('data-variant-id', CYM_VARIANTS[num]);
            btn.removeAttribute('data-offer-url');

        } else {
            console.warn(`[CYM] Card #${num} has no matching offer or variant.`);
        }
    });

    console.info(`[CYM] Done. ${cards.length} card(s) processed.`);
})();

"Note: Since these items are dynamically loaded via JavaScript, adding them to the cart might trigger an 'empty' state in some browser drawer apps. If the item doesn't appear immediately, try navigating directly to checkout after clicking the button."

Once you hit Enter, the black "Expired" screen will instantly vanish, you can scroll again, and the buttons will let you add the items/trials to your cart.

Enjoy the packs and plugins! Let me know if you run into any issues.

u/buraianchuu — 10 days ago

I'm back

Hey all who knows me.ive been taking care of a real bad foot and am having surgery soon. I just haven't done much of anything for a few months....my apologies that I just kinda disappeared but I'm back for now....so hmu if ya need any Cymatics packs

reddit.com
u/RyanThaOldMan — 11 days ago

Lf: Production Hut Serum/Drums (Speed Garage & Deep House)

Hey I need:
Production Hut Deep House Serum Presets

Production Hut Deep House Serum Druns

Production Hut Speed Garage Serum Presets (any)

Production Hut Speed Garage Drums (any)

I have:

LevelUp FLP - Speed Garage Motion

LevelUp FLP - Afro House Fever

Sonance Sounds - Speed (Vol 1.)

Blanc Audio - The Sounds of Blanc Vol 1

The Producer School - Illusion

Raw Gemz - UK Speed Garage

I have more kits but CBA to look rn
Message me if you can help :)

reddit.com
u/Unusual_Alarm1349 — 11 days ago

Has anyone managed to get in touch with their support?

I must have accidently clicked one of the free buttons on the site when going to checkout for one of their live stream events a couple of weeks ago and I just had $50 something taken from my credit card to sign up for a month of their services.

I logged a couple of hours after the payment came out and instantly cancelled the subscription and emailed them to ask to have it refunded. I've emailed them twice now and had no responses, is this common for this company?

I haven't actually started making music at all yet so their service does nothing for me.

Should I be organising a chargeback through the bank instead?

Thanks for the help.

reddit.com
u/VanJeans — 12 days ago

Anyone willing to share these limited time offers from today now that those have expired?

Some people are disappointed that they missed out today's freebies and so did I, especially for those living halfway around the world at different times. Now it's locked.
https://cymatics.fm/pages/cymatics-u5dd5

Probably the people at Cymatics were so pissed at giving away so many loop packages and plugins through leaks that they decided to turn a 180 and make those who watch would able to receive the freebies during the livestream time and lock them when it's over. I mean, only few would be able to stay at the livestream all the way through. But despite of that, I have received a lot of their freebies from them in the past and only support them with a few dollars.

These include:
Gold - MIDI Collection
Illusions - RNB Melody Loops
Fractals - Synth Melodies
Waves - Melodic Melody Loops
Ascension - Guitar Melody Loops
Neptune Lite plugin
Frenzy - Trap Melody Loops
Generations 4 - 2010's Samples
Paradox 3 - Electronic Melodies
Oblivion - Melody Loop Collection
808 Day Collection
Paradox 3 - Electronic Drum Loops
Paradox 3 - Electronic MIDI
Immortal - RnB Melodies
Midi Shredder plugin
Song Melodies plugin
Illusion - Creative Delay plugin
Project ONE
Legacy Mystery Pack
Polarity - Vocal Collection
Hybrid - Drum Loops
Cymatics EQC1A plugin
Cymatics NC-73 plugin
Diablo Drum Enhancer plugin

Edit: The script can be found here: https://www.reddit.com/r/LoveCymatics/comments/1ufwx21/cymatics_june_25th_bypass_offer_expired_unlock/

u/Zocom7 — 10 days ago

Love Cymatics?

Good for you, their marketing is completely fucking insufferable. Spammy, scammy and just straight up fucking annoying. I unsubscribed and deleted all of their samples just out of spite. Fuck cymatics!

reddit.com
u/burner_account5829 — 12 days ago