You can create a Roblox script that allows players to grab and move Part objects using the middle mouse button. Below is a LocalScript that achieves this. This should be inserted into a LocalScript within StarterPlayerScripts or StarterGui, and you need to ensure that the parts you want to manipulate are set up appropriately in the game.
Here's the script:
```lua
-- LocalScript
local player = game.Players.LocalPlayer
local mouse =


