Is there a way to group the entire workspace without breaking the scripts?

I’m trying to tilt the entire map by grouping it and using the model’s PrimaryPartCFrame.

My problem is that, since all scripts that refers to a part in workspace starts with “workspace.InsertPartNameHere”, all of them breaks since I’m trying to group the entire workspace and they’re supposed to be “workspace.Model.InsertPartNameHere” instead.

There’s a ton of strings in scripts referring something in workspace and it’s a ridicilous idea to edit them one-by-one.

What would be the best solution for this?

Use the tool Find All / Replace All in the VIEW tab of studio. You can replace workspace.insertpartnamehere to workspace.Model.insertpartnamehere. You need to click the down arrow to replace them.
image

1 Like

Totally forgot about that. Thank you!