I added a script inside the Handle and typed:
1 | script.Parent.Name = '_' |
2 | wait( 2 ) |
3 | script.Parent.Name = 'Handle' |
But, it still was attached to my hand. Why is that?
Make sure the you make a spawnLocation so you'll spawn at the ground, otherwise the tool will spawn in the air, unless you want it to do that then it's your choice.
01 | -- This script is a normal script, inside StarterPack, i think it doesn't really matter where it is, just make sure it's in a location where normal scripts are acceptable to run. |
02 |
03 |
04 | -- Make sure to put the tool in "ReplicatedStorage" |
05 |
06 | local tool = game.ReplicatedStorage.Tool:Clone() -- cloning the part, and set the cloned part to be a variable |
07 |
08 |
09 |
10 | wait( 3 ) -- Making sure the player has loaded in before the script runs, (You can do this an alternative way with :LoadCharacter(). |
11 |
12 | tool.Parent = game.Workspace |
13 | tool.Handle.Position = game.Workspace:WaitForChild( "YOUR NAME HERE" ).HumanoidRootPart.Position + Vector 3. new( 0 , 0 ,- 5 ) -- ating the tool's cloned position to your position, and then offsetting it from the z axis to make sure you won't automatically pick it up, intead it's in front of you. |
14 | wait( 2 ) |
15 | tool.Handle.Position = game.Workspace:WaitForChild( "YOUR NAME HERE" ).HumanoidRootPart.Position -- Setting the tool's cloned position to your absolute position. |