PluginToolbar

사용되지 않는 항목 표시
만들 수 없음

A PluginToolbar is an object created by using the Plugin:CreateToolbar() method. It is used to create PluginToolbarButtons using the CreateButton function. In general, it is good practice for a plugin to use one and only one uniquely named toolbar for all of its buttons. In Roblox Studio, toolbars are rendered under the Plugins tab.

A screenshot of Roblox Studio's Plugins tab, rendering several PluginToolbars

Pictured above are three PluginToolbars in Roblox Studio: Animations, Three Wise Monkeys and Localization. The center toolbar is a custom toolbar created by a plugin; the other toolbars are created by built-in Roblox Studio plugins.

Example

The following code sample creates a basic toolbar with one button. It should be run as a Roblox Studio plugin, and not run as a Script.


local toolbar = plugin:CreateToolbar("Three Wise Monkeys")
local button = toolbar:CreateButton("Mizaru", "See No Evil", "rbxassetid://2778270261")

요약

메서드

속성

메서드

플러그인 보안

Creates PluginToolbarButton that allows the user to initiate a single, one-off action in Roblox Studio through the Click event.

매개 변수

buttonId: string

A unique button ID.

tooltip: string

The text displayed in the tooltip shown when a user hovers over the button.

iconname: string

The asset ID (e.g. rbxassetid://1507949215) of the icon displayed in the button.

text: string

Text displayed under the button icon. Optional. If this field is not provided, the ID will be used instead.

기본값: ""

반환

코드 샘플

Adding a Plugin Toolbar Button

local ServerScriptService = game:GetService("ServerScriptService")
local toolbar = plugin:CreateToolbar("Empty Script Adder")
local newScriptButton = toolbar:CreateButton("Add Script", "Create an empty Script", "rbxassetid://1507949215")
local function onNewScriptButtonClicked()
local newScript = Instance.new("Script")
newScript.Source = ""
newScript.Parent = ServerScriptService
end
newScriptButton.Click:Connect(onNewScriptButtonClicked)

이벤트