I did the same thing, but that was right when they were released.
can i maik thread ploz
You go in ROBLOX Studio or build mode
go to tools
near the bottom you should see something like plugin source
click it
you should see something appear
right click it
find "Text Document" and click
now open your text document
now put this in your text document
local PluginManagerObject = PluginManager()
local Plugin = PluginManagerObject:CreatePlugin()
local Toolbar = Plugin:CreateToolbar("Hello World Plugin Toolbar")
local Button = Toolbar:CreateButton("Print Hello World", "Click this button to print Hello World!", "IconName.png")
local Button = Toolbar:CreateButton("Print Hello World", "Click this button to print Hello World!", "IconName.png")
now for this, ("Print Hello Word") is what you want to call it and ("Click this button to print hello world") is what will appear when you hover over it. ("IconName.png") I'm guessing you have to get a picture directly from your computer but if you don't have a picture ("Click this button to print hello world") will be what appears on our button.
if you want a test here:
local PluginManagerObject = PluginManager()
local Plugin = PluginManagerObject:CreatePlugin()
local Toolbar = Plugin:CreateToolbar("Hello World Plugin Toolbar")
local Button = Toolbar:CreateButton("Print Hello World", "Click this button to print Hello World!", "IconName.png")
Button.Click:connect(function()
print("Hello, World!")
end)
"File" at the bar on the top and then go to "Save As" put in what you want, just end it with .lua and change the "Save as type" to "All Files"
ya now save your game and go into build mode and it sure appear but if it doesnt it errored
|