18+ content!

Millkydad

Hello, I'm Max. I am a digital artist who specializes in drawing furry arts. Additionally, I enjoy creating background scenes. I also dabble in character animation using the Spine2D program. I have a keen interest in visual novels and dream of creating my own.Early access to pages, the comic in HD, all comic frames in original size, WIPs, and exclusive versions of my works — you can find it all on my Patreon! <3

Artworks


Сomic


Lilith's Life 18+

“Lilith’s Life” is a furry comic about a young girl whose ordinary, quiet life suddenly spirals into a dangerous game. Step by step, she’s drawn into blackmail. A mysterious stranger holds her fate in his hands, and every new demand could shatter everything she holds dear — if she dares to resist.How far will he go? And does Lilith have the courage to take control and stop being his puppet?Want more? Read the rest on my Patreon!❤️

window.MK_PAGES = [ "https://raw.githubusercontent.com/Millkydad/millkydad-comics/main/page-01.jpg", "https://raw.githubusercontent.com/Millkydad/millkydad-comics/main/page-02.jpg", "https://raw.githubusercontent.com/Millkydad/millkydad-comics/main/page-03.jpg", "https://raw.githubusercontent.com/Millkydad/millkydad-comics/main/page-04.jpg", "https://raw.githubusercontent.com/Millkydad/millkydad-comics/main/page-05.jpg", "https://raw.githubusercontent.com/Millkydad/millkydad-comics/main/page-06.jpg" ]; window.MK_MODE = "single"; window.MK_CURRENT = 0; window.MK_COMIC_MOVED = false; window.mkMoveToBody = function() { if (window.MK_COMIC_MOVED) return; var overlay = document.getElementById("mk-comic-overlay"); var lightbox = document.getElementById("mk-lightbox"); if (overlay) document.body.appendChild(overlay); if (lightbox) document.body.appendChild(lightbox); window.MK_COMIC_MOVED = true; }; window.mkOpenComic = function() { window.mkMoveToBody(); window.MK_CURRENT = 0; window.mkRender(); var overlay = document.getElementById("mk-comic-overlay"); if (overlay) overlay.classList.add("mk-open"); document.body.style.overflow = "hidden"; }; window.mkCloseComic = function() { var overlay = document.getElementById("mk-comic-overlay"); var lightbox = document.getElementById("mk-lightbox"); if (overlay) overlay.classList.remove("mk-open"); if (lightbox) lightbox.classList.remove("mk-open"); document.body.style.overflow = ""; }; window.mkCloseLightbox = function(e) { if(e) e.stopPropagation(); var lightbox = document.getElementById("mk-lightbox"); if (lightbox) lightbox.classList.remove("mk-open"); }; window.mkStep = function() { return window.MK_MODE === "spread" ? 2 : 1; }; window.mkRender = function() { var pages = document.getElementById("mk-pages"); var lbPages = document.getElementById("mk-lightbox-pages"); var counter = document.getElementById("mk-counter"); var previous = document.getElementById("mk-prev"); var next = document.getElementById("mk-next"); var lbPrev = document.getElementById("mk-lb-prev"); var lbNext = document.getElementById("mk-lb-next"); var single = document.getElementById("mk-single"); var spread = document.getElementById("mk-spread"); if (!pages) return; var step = window.mkStep(); var indexes = window.MK_MODE === "spread" ? [window.MK_CURRENT, window.MK_CURRENT + 1] : [window.MK_CURRENT]; var currentClass = window.MK_MODE === "spread" ? "mk-spread-view" : "mk-single-view"; pages.innerHTML = ""; pages.className = currentClass; for (var i = 0; i < indexes.length; i++) { var index = indexes[i]; if (index < 0 || index >= window.MK_PAGES.length) continue; var image = document.createElement("img"); image.className = "mk-page"; image.src = window.MK_PAGES[index]; image.alt = "Page " + (index + 1); image.onclick = function(e) { if(e) e.preventDefault(); if(e) e.stopPropagation(); var lightbox = document.getElementById("mk-lightbox"); if(lightbox) lightbox.classList.add("mk-open"); }; pages.appendChild(image); } if (lbPages) { lbPages.innerHTML = ""; lbPages.className = currentClass; for (var j = 0; j < indexes.length; j++) { var idx = indexes[j]; if (idx < 0 || idx >= window.MK_PAGES.length) continue; var lbImg = document.createElement("img"); lbImg.className = "mk-page"; lbImg.src = window.MK_PAGES[idx]; lbImg.onclick = function(e) { if(e) e.stopPropagation(); window.mkCloseLightbox(); }; lbPages.appendChild(lbImg); } } var end = Math.min(window.MK_CURRENT + step, window.MK_PAGES.length); if (window.MK_MODE === "spread" && window.MK_CURRENT + 1 < window.MK_PAGES.length) { counter.textContent = (window.MK_CURRENT + 1) + "-" + end + " / " + window.MK_PAGES.length; } else { counter.textContent = (window.MK_CURRENT + 1) + " / " + window.MK_PAGES.length; } var showPrev = window.MK_CURRENT <= 0 ? "hidden" : "visible"; var showNext = window.MK_CURRENT + step >= window.MK_PAGES.length ? "hidden" : "visible"; if (previous) previous.style.visibility = showPrev; if (next) next.style.visibility = showNext; if (lbPrev) lbPrev.style.visibility = showPrev; if (lbNext) lbNext.style.visibility = showNext; if (single) single.classList.toggle("mk-active", window.MK_MODE === "single"); if (spread) spread.classList.toggle("mk-active", window.MK_MODE === "spread"); }; window.mkNext = function(e) { if(e) e.stopPropagation(); var step = window.mkStep(); if (window.MK_CURRENT + step < window.MK_PAGES.length) { window.MK_CURRENT += step; window.mkRender(); } }; window.mkPrev = function(e) { if(e) e.stopPropagation(); var step = window.mkStep(); if (window.MK_CURRENT - step >= 0) { window.MK_CURRENT -= step; window.mkRender(); } }; window.mkSetSingle = function() { window.MK_MODE = "single"; window.mkRender(); }; window.mkSetSpread = function() { window.MK_MODE = "spread"; window.MK_CURRENT = window.MK_CURRENT - (window.MK_CURRENT % 2); window.mkRender(); }; document.addEventListener("keydown", function(event) { var overlay = document.getElementById("mk-comic-overlay"); var lightbox = document.getElementById("mk-lightbox"); var ovOpen = overlay && overlay.classList.contains("mk-open"); var lbOpen = lightbox && lightbox.classList.contains("mk-open"); if (!ovOpen && !lbOpen) return; if (event.key === "ArrowRight") window.mkNext(); if (event.key === "ArrowLeft") window.mkPrev(); if (event.key === "Escape") { if (lbOpen) window.mkCloseLightbox(); else if (ovOpen) window.mkCloseComic(); } }); window.MK_TOUCH_START = null; document.addEventListener("touchstart", function(event) { var viewer = document.getElementById("mk-comic-viewer"); var lightbox = document.getElementById("mk-lightbox"); var isViewer = viewer && viewer.contains(event.target); var isLightbox = lightbox && lightbox.classList.contains("mk-open") && lightbox.contains(event.target); if (!isViewer && !isLightbox) return; if (event.touches.length > 0) window.MK_TOUCH_START = event.touches[0].clientX; }, { passive: true }); document.addEventListener("touchend", function(event) { if (window.MK_TOUCH_START === null) return; var end = event.changedTouches[0].clientX; var diff = end - window.MK_TOUCH_START; if (diff > 50) window.mkPrev(); if (diff < -50) window.mkNext(); window.MK_TOUCH_START = null; }, { passive: true });

Copyright:

The use of my works for personal purposes is prohibited. This means that you are not allowed to use, copy, edit, modify or publish my works on other websites without my permission, or use them for artificial intelligence training. ***If you have purchased my work, you have the right to use it for personal and commercial purposes. ***Thank you for your understanding and respect for my work!If you have any questions, please contact me for additional information.*** - This is just a small part! To read the full copyright, go to the tab T.O.S. / COPYRIGHTSincerely,
Millkydad

© 2024-2026 Millkydad

Price


~ Before you buy anything, read the rules under the T.O.S. tab!
Please keep in mind that opening dates are only an estimate! Commissions might open a little later, or even much earlier than the date listed above. Feel free to check back on the website from time to time to see if commissions are available! 💕

ICON (OPEN)

Headshot + Full rendering (full shadows, light, clean linework) [resolution: 4k+]One character: $50

Additionally (free):
• BG: none / colored / simple bg /simple bg with blur
• Transparent background on demand
• Any small additions / changes

Additionally (Pay):
• If a character has complicated accessories. +$10
• If the character has complicated hair/has extra ears/horns, etc. +$10

window.MK_FORM_MOVED = false; window.mkMoveFormToBody = function() { if (window.MK_FORM_MOVED) return; var overlay = document.getElementById("mk-form-overlay"); if (overlay) document.body.appendChild(overlay); window.MK_FORM_MOVED = true; }; window.mkOpenBuyForm = function() { window.mkMoveFormToBody(); var overlay = document.getElementById("mk-form-overlay"); if (overlay) overlay.classList.add("mk-open"); document.body.style.overflow = "hidden"; }; window.mkCloseBuyForm = function() { var overlay = document.getElementById("mk-form-overlay"); if (overlay) overlay.classList.remove("mk-open"); document.body.style.overflow = ""; };

BUST (OPEN)

Full character drawing from head to chest +Full rendering (full shadows, light, clean linework) [resolution: 4k+]One character: $120

Additionally (free):
• Only NSFW version/SFW swimsuit version
• BG: none / colored / simple bg /simple bg with blur
• Can be added inscription / text

Additionally (Pay):
• SFW version with clothes (depends on complexity) +$10-20
• Complex background (depends on complexity) +$10-30
• Complex accessories +$10
• Complex hair/many ponytails/ +$10

window.MK_BUST_FORM_MOVED = false; window.mkMoveBustFormToBody = function() { if (window.MK_BUST_FORM_MOVED) return; var overlay = document.getElementById("mk-bust-form-overlay"); if (overlay) document.body.appendChild(overlay); window.MK_BUST_FORM_MOVED = true; }; window.mkOpenBustForm = function() { window.mkMoveBustFormToBody(); var overlay = document.getElementById("mk-bust-form-overlay"); if (overlay) overlay.classList.add("mk-open"); document.body.style.overflow = "hidden"; }; window.mkCloseBustForm = function() { var overlay = document.getElementById("mk-bust-form-overlay"); if (overlay) overlay.classList.remove("mk-open"); document.body.style.overflow = ""; };

THIGH-UP (OPEN) 2 slots left!

Full draw character from head to thighs +Full rendering (full shadows, light, clean linework, simple background) [resolution: 4k+]Only flat colors: $80
One character: $160
Fullbody: $190

Additionally (free):
• Only NSFW version/SFW swimsuit version
• BG: none / colored / simple bg /simple bg with blur
• Can be added inscription / text

Additionally (Pay):
• SFW version with clothes (depends on complexity) +$10-30
• Complex accessories +$10
• Complex hair/many ponytails/ +$10-20
• Complex props (staff, weapon, items, etc.) +$10-30

window.MK_THIGH_FORM_MOVED = false; window.mkMoveThighFormToBody = function() { if (window.MK_THIGH_FORM_MOVED) return; var overlay = document.getElementById("mk-thigh-form-overlay"); if (overlay) document.body.appendChild(overlay); window.MK_THIGH_FORM_MOVED = true; }; window.mkOpenThighForm = function() { window.mkMoveThighFormToBody(); var overlay = document.getElementById("mk-thigh-form-overlay"); if (overlay) overlay.classList.add("mk-open"); document.body.style.overflow = "hidden"; }; window.mkCloseThighForm = function() { var overlay = document.getElementById("mk-thigh-form-overlay"); if (overlay) overlay.classList.remove("mk-open"); document.body.style.overflow = ""; };

THIGH-UP+ (OPENING IN 2027)

Full draw character from head to thighs +Full rendering (full shadows, light, clean linework) + Full background [resolution: 5k+]One character: $270

Additionally (free):
• SFW+NSFW version
• Full background

Additionally (Pay):
• Complicated clothing +$10
• Complex accessories +$10
• Complex hair/many ponytails/ +$10-20
• Complex props (staff, weapon, items, etc.) +$10-30

window.MK_THIGHPLUS_FORM_MOVED = false; window.mkMoveThighPlusFormToBody = function() { if (window.MK_THIGHPLUS_FORM_MOVED) return; var overlay = document.getElementById("mk-thighplus-form-overlay"); if (overlay) document.body.appendChild(overlay); window.MK_THIGHPLUS_FORM_MOVED = true; }; window.mkOpenThighPlusForm = function() { window.mkMoveThighPlusFormToBody(); var overlay = document.getElementById("mk-thighplus-form-overlay"); if (overlay) overlay.classList.add("mk-open"); document.body.style.overflow = "hidden"; }; window.mkCloseThighPlusForm = function() { var overlay = document.getElementById("mk-thighplus-form-overlay"); if (overlay) overlay.classList.remove("mk-open"); document.body.style.overflow = ""; };

FULLBODY (OPENING IN 2027)

Full character illustration +Full rendering (full shadows, light, clean linework) + Full background [resolution: 5k+]One character: $350

Additionally (free):
• SFW+NSFW version
• Full background

Additionally (Pay):
• Complicated clothing +$10
• Complex accessories +$10
• Complex hair/many ponytails/ +$10-20
• Complex props (staff, weapon, items, etc.) +$10-30

window.MK_FULLBODY_FORM_MOVED = false; window.mkMoveFullbodyFormToBody = function() { if (window.MK_FULLBODY_FORM_MOVED) return; var overlay = document.getElementById("mk-fullbody-form-overlay"); if (overlay) document.body.appendChild(overlay); window.MK_FULLBODY_FORM_MOVED = true; }; window.mkOpenFullbodyForm = function() { window.mkMoveFullbodyFormToBody(); var overlay = document.getElementById("mk-fullbody-form-overlay"); if (overlay) overlay.classList.add("mk-open"); document.body.style.overflow = "hidden"; }; window.mkCloseFullbodyForm = function() { var overlay = document.getElementById("mk-fullbody-form-overlay"); if (overlay) overlay.classList.remove("mk-open"); document.body.style.overflow = ""; };

© 2024-2026 Millkydad

T.O.S.


By purchasing a commission, you are indicating that you've read Terms of Service and agree with them.
I retain the right to terminate the order in case commissioner violates this terms.

GENERAL RULES

• Payment via Paypal. Maybe ETH/BTC/USDT (ask first).
• I don't accept deadlines.
• Once the work is done, you will receive a high-resolution PNG file as well as a smaller JPG file for use on the web.
• You get full rights, including commercial rights to this work, but with the condition of leaving credits about me.
• You cannot modify the finished work (draw additional environment elements, etc.). Adding filters, text or cropping art is allowed.
• By making a purchase, you affirm that you are at least 18 years old and that the funds used for the transaction belong to you personally.
• I can use this work on any of my sites, likewise I can use this work on a subscription site like Patreon. I can use your work for artbook printing or sticker printing, etc.
You can check the status of your order in the CONTACT/STATUS tab.

BEFORE YOU BUY

• If you want to buy a commission from me, write me a message where the name (ICON, THIGH-UP+, FULLBODY) will be taken into account, then describe in detail what exactly you would like to see, examples in the form of photos, etc. are welcome. Try to send your message in one text (do not stretch it into many messages).
• If you're not ready for rejection or a long wait time, then you're better off waiting for a time when I've gained experience and can draw everything.
• If I find your order difficult, or one for which I do not have enough experience, I can refuse. I can also refuse without giving a reason. If you are rejected, don't get upset and try again with a different idea or later when I am more experienced.
• I can't tell you how long it will take me to fulfill your order once it has been approved. It can be as short as a week or as long as a month or more. I live in a country that is at war and I have frequent power outages. And at the end of the day, I am not a machine or a robot, I need inspiration and a good mood to draw. If you are not comfortable with this, decline the commission.

PROCESS

• Once your idea is approved, after some time you will receive a sketch. As soon as you approve it, I will start working on it.
• You can make small adjustments to the sketch (ask for longer hair, change the bangs, make a bigger ponytail, or remind me if I forgot something).
• If you don't like the sketch, I reserve the right to refuse to change it, and may use the sketch for my own work or publish it as YCH.
• I can also reject your idea if you don't like the sketch and start working on another commission.

PAYMENT/REFUNDS

• Free Sketch Phase: The initial sketch is 100% free. You can request adjustments or cancel the order at this stage with no obligation. Please note: If you dislike the sketch or cancel the order, I reserve full rights to reuse, repurpose, or sell the sketch (e.g., as a YCH, adoptable, or personal art).
• Payment: Once you approve the sketch, 100% full payment is required before I proceed with coloring and full rendering.
• Final Delivery: After the artwork is finished, you will receive a link to download the original full-resolution PNG\JPG file and a web-optimized version.
• Financial Delays: If you encounter unexpected financial difficulties after approving the sketch, please inform me as soon as possible so we can pause or postpone your commission.
• Cancellations & Refunds: You can cancel for free anytime during the sketch phase (in this case, ownership of the sketch remains with me, and I may sell or reuse it). If you request a cancellation after payment has been made and rendering has started, a partial refund will be issued based on the amount of work completed. Ghosting or refusing payment after sketch approval will result in a permanent blacklist from future commissions.

If you have any questions, feel free to reach out to me ^^

I DRAW

• Only anthro Furry characters.
• SFW+NSFW version.
• Female characters only (Male characters will be revealed later)
• Male characters can be drawn only partially (part of the torso for sex scenes, etc.)
Right now, the only species that is open are these: wolves, foxes, cats (almost all of them), rabbits (ask first), fennec, deer. Other species are still closed.


I DON'T DRAW

• Feral, human (perhaps in the future), chibby.
• Characters with wings, characters with lots of tails (more than 3).
• 2 or more characters (ask first).
• Most fetishes, complicated porn scenes.
• Any kind of violence, blood, pain, war, death, dismemberment, mutilation, transformation, underage characters in sex scenes, hyper fat or dystrophy, hyper muscular, hyper dicks and tits.


COPYRIGHT

1. Copyright and Distribution1.1. All rights to the digital images and illustrations (hereinafter referred to as "Works") created by me belong to me, unless otherwise agreed upon.1.2. The use of my Works for personal purposes is prohibited. This means you may not use, copy, edit, modify, or publish my Works on other websites without my permission, nor use them for artificial intelligence training.1.3. Publishing my Works on other websites without my permission is prohibited, except for specific resources. Posting on any other platforms is prohibited without my consent.1.4. Modifying, editing, or redrawing my Works without prior consent is prohibited. Also, creating derivative works (such as outlines, recoloring, applying filters, changing composition, or any other modifications) without my consent is prohibited.1.5. The use of my Works for artificial intelligence training, machine learning, generative AI, or automated image processing tools is prohibited.1.6. My copyright applies to all platforms where I publish my Works. Posting on these platforms does not imply a waiver of my rights or permission for unrestricted use.1.7. Publishing my Works on any platform does not imply permission for free use, distribution, or commercial exploitation by third parties.1.8. Creating derivative works (including fan art, remixes, redesigns, and modifications) without my consent is prohibited.1.9. Regardless of familiarity with this agreement, all Works are protected by copyright, and using them without permission is prohibited.1.10. The use of my Works in blockchain technologies, NFTs, or any smart contracts is prohibited without my written consent.


-

2. Buyer’s Rights2.1. If you purchase my Work, you have the right to use it for both personal and commercial purposes.2.2. The buyer has the right to use the Work in:- Books
- Comics
- Illustrations for various projects
- Prints on clothing and other physical media
2.3. The buyer is not allowed to:- Resell the Work in digital format
- Modify or edit the Work without prior consent
- Redraw the Work for subsequent sale
- Distribute the Work in public access without my consent, even if used for commercial purposes
3. Transfer of Rights Limitations3.1. If the buyer decides to sell their character, including all illustrations featuring this character, the new owner will not receive the same rights as the original buyer. A separate agreement with me must be made for the new owner.4. Additional Terms4.1. Violating the terms of this agreement may lead to the revocation of usage rights for the Works and potential legal consequences.4.2. I reserve the right to modify the terms of this agreement, notifying buyers of any changes.4.3. By purchasing my Work, the user automatically agrees to this agreement.4.4. The text of this agreement is always available for review. By purchasing my Work, you confirm that you have read and fully accept its terms.4.5. If you have any questions, please contact me for further information.Sincerely,
Millkydad


© 2024-2026 Millkydad

F.A.Q


What do I use when I draw?

Paint Tool Sai -I use the first version of SAI, and in this program, I primarily draw characters. Occasionally, I make rough sketches of backgrounds or adjust some small details that are inconvenient to fix in Photoshop.Photoshop -I only draw backgrounds here. Over the past couple of years, I've managed to create my excellent (in my opinion) set of brushes that are convenient to draw with. I also use it occasionally to adjust colors.Procreate -I used it before to draw backgrounds or make sketches, but I can't find a good brush for sketching artworks, so I don't use this program much. MediBang is more enjoyable for me, and I prefer drawing there, but it's not very convenient for me to draw on the iPad :DAseprite -The best program for pixel art.Spine 2D -The program in which I create animations.Ligftroom -The program in which I do the final color correction.

Trades, Collabs or Requests:

Trades: I currently don`t offer trades.Collabs: Collaborations are currently closed.Requests: No.Role-playing game: Not yet.

Devices:

Tablets:iPad 9 + Apple Pencil 1st.
Wacom Intuos S
Wacom Intuos Pen&Touch
Spec of my PC:Processor: Ryzen 5600
Graphics card: RTX 3060
RAM: 32 GB


© 2024-2026 Millkydad

Contact/Pay


CONTACT

Also, be sure to read the T.O.S. before reaching out to me!
•Expect a response within 1-3 days.
You can contact me here:

Use my Telegram to contact me ONLY if we are already working together, or if you want to contact me urgently.


PAY

⚠️ IMPORTANT SAFETY & PAYMENT NOTICE
Due to an increasing number of scammers and impersonators, please read the following carefully before submitting:
• Official Contact: I will ONLY contact you from my official accounts with the handle millkydad (written with two "L"s: m-i-l-l-k-y-d-a-d).If you want to pay via BTH, ETH, USDT, contact me first to see if payment is available.


scroll down to see Art Status

Art status:


Загрузка доски...

(function () { var API_URL = "https://millkydad-trello.millkydad.workers.dev/comissions"; var container = document.getElementById("trello-board"); fetch(API_URL) .then(function (res) { if (!res.ok) throw new Error("Network error"); return res.json(); }) .then(function (lists) { container.innerHTML = ""; lists.forEach(function (list) { var listEl = document.createElement("div"); listEl.className = "trello-list"; var title = document.createElement("h3"); var nameSpan = document.createElement("span"); nameSpan.textContent = list.name; var count = document.createElement("span"); count.textContent = list.cards.length; title.appendChild(nameSpan); title.appendChild(count); listEl.appendChild(title); if (list.cards.length === 0) { var empty = document.createElement("p"); empty.className = "trello-empty"; empty.textContent = "Нет карточек"; listEl.appendChild(empty); } else { list.cards.forEach(function (card) { var cardEl = document.createElement("a"); cardEl.className = "trello-card"; cardEl.href = card.url; cardEl.target = "_blank"; cardEl.rel = "noopener noreferrer"; cardEl.textContent = card.name; listEl.appendChild(cardEl); }); } container.appendChild(listEl); }); }) .catch(function (err) { container.innerHTML = "

Не удалось загрузить доску.

"; console.error(err); }); })();

© 2024-2026 Millkydad