| Crates.io | drillbit |
| lib.rs | drillbit |
| version | 0.1.1 |
| created_at | 2025-09-02 11:42:19.5639+00 |
| updated_at | 2025-09-02 14:11:42.540372+00 |
| description | A plugin installation tool for Roblox |
| homepage | https://github.com/jacktabscode/drillbit |
| repository | https://github.com/jacktabscode/drillbit |
| max_upload_size | |
| id | 1821020 |
| size | 79,679 |
Drillbit is an extremely simple CLI tool that lets you define a set of Roblox plugins to be installed for you and your team.
I made this so that I could use the same plugins in my project across two different machines.
I probably won't start publishing binaries yet, so for now, you can install with Cargo:
cargo install drillbit
Create a file named drillbit.toml in your project's directory.
# You can use local files in your project
[plugins.editor_position]
local = "plugins/editor_position.luau"
# You can also add plugins on the Creator Store
[plugins.hoarcekat]
cloud = 4621580428
Simply run it in your project's directory:
drillbit
[INFO drillbit] Reading "hoarcekat"...
[INFO drillbit] Writing "/Users/jack/Documents/Roblox/Plugins/my_project:hoarcekat_4621580428.rbxm"...
[INFO drillbit] Reading "editor_position"...
[INFO drillbit] Writing "/Users/jack/Documents/Roblox/Plugins/my_project:editor_position.luau"...
[INFO drillbit] Plugins installed successfully!
Drillbit checks files in your user directory for any plugins that are already installed using a hash comparison. However, it is not capable of detecting plugins installed from the toolbox, or plugins installed that are of different "versions".