Codify - Convert anything to Luau, TypeScript, Fusion, React, Vide, Rojo

No problem, I think you just need to use the :GetControlPoints() method on the Path2D instance, then set the newly created Path2D’s control points with the :SetControlPoints() method with the given array.

Version 2.5.0

Get on Roblox Get on Itch.io

Demo version →

cc. @Semaphorism @TheRealANDRO

3 Likes

Version 2.5.1

Get on Roblox Get on Itch.io

Demo version →

  • Added the option to hide a GuiObject’s BackgroundColor3, BorderColor3 and BorderSizePixel properties from generated code if its BackgroundTransparency is set to 1. BaseParts with a Transparency of 1 will also have their Color property omitted.
    • You can find this option under Settings → Snippets → Hide Object Fills.
    • If this option is enabled, GuiObjects with a BorderSizePixel of 0 will also have their BorderColor3 property ignored.
    • [!!!] This option is enabled by default.
  • Added the option to hide the TextSize property on text GUI elements[1][2][3] whose TextScaled properties are enabled.

Is there a way to purchase this plugin with robux?

3 Likes

very useful plugin, has saved me hours of time during development.

2 Likes

Fusion is now at v0.3, may you update the plugin to use this version? The snippets don’t work directly anymore because New is not assigned. They’re in scopes instead.

Also, with the release of Instance:IsPropertyModified(), I believe it’s possible to shorten the generated property assignments. It should not assign the property if it is not modified! That will remove the unused propertys like BorderSizePixel that keep showing up in every GuiObject’s code…

I can’t enforce this currently, as people may still be using a version lower than 0.3. You can manually change the settings, however, I will probably set scopes as the default from Codify v3 onwards (which will allow for some breaking changes).


Codify has never applied properties when they’re unchanged from their default value. I think what you’re referring to is the “default” values Studio applies (for convenience) when you create them using the Insert Object menu vs. Instance.new.

Codify v2.5.1 introduced a setting that allows background and border-related properties to be omitted when the GuiObject is completely transparent; however.

(fwiw, the property methods are not yet enabled either, but I cannot wait for a full property API, which would mean I could eliminate HTTP requests entirely).

1 Like

Hey, I wanted to introduce you to my own instance framework:

It would be really cool if your plugin would be able to support it

I don’t plan on adding additional frameworks to the current version (v2.x) of Codify, but I’m determined to expand the capabilities of Codify in v3.x to allow for custom shareable generators.

Does it support vide jsx? I can see that it supports typescript jsx but i wanna make sure i can use it with vide :slight_smile:

I think so? As far as I know the core JSX syntax is identical regardless of whether you use Fusion, React or Vide. I think the only difference is that Fusion JSX also requires a “scope” param, which Codify doesn’t currently support. However, I don’t use TypeScript myself with Roblox, so I can’t confirm if this is correct.