Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

is It possible to make an FE Script Builder? [closed]

Asked by 4 years ago

if it is possible could you tell me how to?

0
Voidacity has accomplished it, so yeah. I don't know how though, so I can't help. SilverCreeper58 23 — 4y
0
oof RemsFriend -24 — 4y

Closed as Not Constructive by DanzLua, Prestory, namespace25, xAtom_ik, and Programical

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
-2
Answered by 4 years ago

if you mean a plugin creating a script then do this:

toolbar = plugin:CreateToolbar('ToolBar Name')
button = toolbar:CreateButton(
    'Create script.',
    'Creates a pre-made script for you.'
)
button.Click:Connect(function()
    local scr = Instance.new('Script', workspace)
    scr.Source = [[
type your code here.]]
end)
Ad