How do I change the position of a part inside a tool?

How do I change the position of a part inside a tool? I’ve written this simple line: script.Parent.Handle.Position =

but I don’t know how to continue it.

1 Like

Uhh, you might wanna use Vector3

2 Likes

something like tihs?

local Handle = workspace.Handle
Handle.Position = Handle.Position + Vector3.new(117.961, 0.984, 22.862) – Moves a part by this much

1 Like

You’re going to add position to handle’s position, if you want to CHANGE it then just do
Handle.Position = Vector3.new(0,0,0)

1 Like

do i have to declare any locals?

1 Like

if you want to? you could do

local Handle = script.Parent.Handle --tool.Handle
Handle.Position = Vector3.new(0,0,0)

or just do

script.Parent.Handle.Position = Vector3.new(0,0,0)