PlacePlugins is a plugin that allows you to load place-specific plugins.
How to:
- Create a PlacePlugins folder in ServerStorage
- Add your scripts, models, folders, or ids to it
- If you use a
NumberValue
orStringValue
, a plugin will be downloaded from Roblox based on theValue
.
- If you use a
- Press “Load New” to load all plugins.
- User interaction is required to run plugins as a security measure. You can always inspect plugins before running them.
- User interaction is required to run plugins as a security measure. You can always inspect plugins before running them.
Developing Place Plugins
Developing a Place Plugin is just like developing a normal plugin. Here’s what the TestPlugin
from above looks like:
print(plugin, script)
plugin:CreateToolbar("Test Plugin"):CreateButton("Test!", "Info", "")
Place Plugins are great for per-project utilities. You can have user-friendly buttons instead of using the command bar. This is especially useful in Team Create, where Scripters can make utilities for Builders.