Problem cloning the same tool twice?
Asked by
5 years ago Edited 5 years ago
Hi there! My issue is as follows:
The user clicks a button and the end result is a selected tool appears that they can then pick up.
They can do this as many times as they wish. The problem is if they select the same tool twice, when the second tool is cloned it will actually remove the first tool form the players backpack.
So they select a tool, it appears then they pick it up.
They select the same tool again and it appears, however the second it appears... the one
it the backpack is removed (before they pick it up). So the problem is there can be only one tool at a time.
I need them to be able to make as many clones (tools) as needed without removing the original clone.
Parent issue?
Here is a sample of the script... any hints in the right direction would be great!!
1 | local tool = game.ReplicatedStorage.tool_one (have also tried ServerStorage) |
2 | local toolclone = tool:Clone() |
3 | local Storage = script.Parent.Parent.Parent:WaitForChild( "Storage" ) |
4 | (side note: storage is in workspace, no this is not in the code ;) |
8 | toolclone.Handle.CFrame = script.Parent.CloneBox.CFrame - Vector 3. new( 0 , 1.4 , 0 ) |
9 | toolclone.Parent = Storage |