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

Is there a blank template for a simple plugin?

Asked by
Voltoxus 248 Moderation Voter
9 years ago

Well the title pretty much says it all lol.

Question: Is there a blank template for a simple plugin? I couldn't find a hole template on the roblox wiki, and when I did the template was outdated.

1 answer

Log in to vote
1
Answered by
Muoshuu 580 Moderation Voter
9 years ago
local Plugin=PluginManager():CreatePlugin()
local Toolbar=Plugin:CreateToolbar("Toolbar Name")
local Button=Toolbar:CreateButton("Text","Hover","Image")

Button.Click:connect(function()
    Make_stuff_happen()
end)
Ad

Answer this question