Instance to script

I remember seeing a plugin that turns an instance to a script but I forgot what it’s called
I tried searching forum but I didn’t find it

So like lets say I have a part
Its color is red and it has a text label that says “Hello World!”

Is there a plugin that makes a script like

local part = Instance.new("Part",workspace)
part.Position = Vector3.new(0,0,0)
part.Anchored = true
part.BrickColor = BrickColor.new("Really red")
local surfaceGui = Instance.new("SurfaceGui",part)
surfaceGui.Face = Enum.NormalId.Front
local textLabel = Instance.new("TextLabel",surfaceGui)
textLabel.Text = "Hello world!"
textLabel.TextScaled = true
textLabel.Font = Enum.Font.Bodoni

I don’t know what the point of that is. If the part is already red you can do

local part_color = part.BrickColor

print(part_color) --> "Really Red"
1 Like

This is the plugin?

1 Like

Yeah its just I’m making a script and I need to make a button then make it using scripts and its gonna have a ton of ui gradients and fonts and stuff so I don’t want to type it all out

1 Like