How do I local move parts with script

Hi! I would like to know how to move parts in local space with script like in studio.

Could you help me please? I don’t find any tutorial about this.

1 Like

Are you asking how to move the part on the client and not the server? If not, you’re in the wrong section. Your post is not very clear.

I didn’t wanted to say local script. I wanted to say local space. I edited the post.

I still do not understand what you’re trying to ask.

In studio, I can switch from World Space to Local Space by doing Crtl + L. I would like to know how to move parts in Local Space instead World Space.

CFrames use local space.

Part.CFrame = Part.CFrame * CFrame.new(0, 0, -10)

2 Likes