How can I set the Position/CFrame of a Tool?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!

I want to set the Position of a Tool with all its welded parts.

  1. What is the issue? Include screenshots / videos if possible!

Right now it only works with the Handle but the rest is missing
Usually it works but now It is in a local script which is probably causing that.
But I need it to be in a Local Script to be individual for every player.

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

local dfclone = game.ReplicatedStorage.DFs:FindFirstChild(df):Clone()	
dfclone.Parent = workspace	
dfclone.Handle.CFrame = studio.DFPoint.CFrame	

Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.

1 Like

I FOUND THE ERROR:
It did not work because I anchored all the parts in in a short time after setting the position which is to fast for Roblox so add a wait and now It works. Also make sure that all parts are welded manually and not through a script :slight_smile: