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