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.
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.
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
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)
do i have to declare any locals?
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)