Shirt Maker - Clothing creator plugin released! Design & make clothes by your own scripts!

Yes, I’ll make it, I just wanted to have the post kicked-off first - this post will be linked below the video and vice versa. I plan to make it within hours.

About pricing: I have several plugins (all supported with Youtube videos), prices vary between free and 50, I hope this is a fair price for this one.

2 Likes

Hello! I really like this plugin. I’m not planning using it in the future, but when I make shirts this comes handy!

2 Likes

Hello, I have tried your plugin, but the only thing I can do it make everything rainbow:

How do I do stuff different?

2 Likes

Wait, you need to make your own script to make it?

I think you should add a draw tool.

4 Likes

Hello, I’m just uploading the tutorial to YouTube, just made the video, it takes appr. an hour. Please read the help page within the plugin for some more help!

And yes, the rainbow boxes are the sample script - you can replace it with any script you want.

2 Likes

Hello, thank you for your comment!

As the title and the first 2 sentences of the post states:
“Create Roblox Clothing by your own scripts! Make-up your shirts by your script!”

The plugin gives an active template and a comfortable environment to do this and you can use its modulescript as a realtime code to do whatever you can imagine.

I’ve tried to create a kind of drawing tool but it would require thousands of GUI objects by each shirt area, that would kill Roblox Studio.

You may need to draw your pics in a different sw, what you don’t need with this plugin is to use any other programming language / sw environment to insert them into your clothing.

Ty for your question, I hope this description helps not to you only but for other users too!

1 Like

The YouTube tutorial has been published!

1 Like

Make this free please, great plugin though!

2 Likes

He can’t. It has to be free to do that.

1 Like

It’s easy to make clothing without the plugin so you are paying for the premium of having a plugin dedicated to making clothing.

1 Like

How do you make it easily? I really wonder, I couldn’t find any solution.
I mean pixel precision & scripted clothing creation.

1 Like

I use Paint.NET (the program, not the website) for pixel precise clothing creation. Scripted clothing creation is one of the premiums for the plugin, so you have to pay the premium of the plugin.

Edit: oh yeah, and I used the Paint.NET distortion effects to make the GREYCAT! group logo and the “graphic design is my passion” shirt on my 01422X account

3 Likes

So what even is this plugin?

It can’t apparently. Must be free and/or open-sourced.

3 Likes

Basically it’s a premium plugin that allows you to make clothing easily with a few premiums like scripted clothing creation.

3 Likes

How do you even change the color or anything tho?

3 Likes

watch this:

3 Likes

My argument is that, if you know your way around making clothes without a plugin, why pay extra to make clothes?

Making clothing on roblox without this plugin is 10 Robux, why spend 39 Robux on just one piece of clothing?

2 Likes

Very practical question, ty! I was waiting for this one so long :slight_smile:

First of all, I suggest to see tutorial video appr. from 08:00 a minute.

The answer:

In the “shirtMaker” modulescript you have the “.create()” function.
Inside this function you have access to the selected frame.

In the sample file I also added a second parameter, called “pixel” that is a sizable frame inside the selected frame, for your convenience (can be ignored if you want to define your own objects).

To simpliest way to recolor to red a 10x10 area in the middle of the selected frame (e.g. the selected part of the shirt) use this script inside the module’s create() function:

local p = pixel:Clone()
p.Size = UDim2.fromOffset(10,10)
p.Position = UDim2.fromOffset(frame.AbsoluteSize.X/2-5, frame.AbsoluteSize.Y/2-5)
p.BackgroundColor3 = Color3.new(1,0,0)
p.Parent = frame

The script with the result:

1 Like

If one doesn’t need this kind of plugin, he doesn’t need it even if it is free or if it costs some Robux. There are a thousand or more free and paid plugins out there, I have 20 only in my Studio.

I share as many details in the post as I can and you can see how it works in the tutorial video, so you can easily decide if you are interested in such a tool or not.

I hope you finally see that it is a great help in many clothing related creative situation.

2 Likes

It has premium features like scripted clothing creation. You can make truly unique clothing.

4 Likes