I am trying to make it so when you touch the tool it will give you it but also clones itself so that it will be in the same spot where you found it, just in case another player comes to get it.
My code:
01 | local Tool = script.Parent.Parent |
02 | local handle = script.Parent |
03 |
04 | handle.Touched:Connect( function () |
05 | Tool.Equipped:Connect( function () |
06 | local TC = Tool:Clone() |
07 |
08 | TC.Position = Vector 3. new( 47.909 , 2075.744 , 180.469 ) |
09 | TC.Parent = workspace |
10 |
11 | end ) |
12 | end ) |
The code was successful in:
Failures:
What I have tried:
i dont know If this will work. But try this
01 | local Tool = script.Parent.Parent |
02 | local handle = script.Parent |
03 |
04 | handle.Touched:Connect( function (hit) |
05 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
06 | Tool.Equipped:Connect( function () |
07 | local TC = Tool:Clone() |
08 |
09 | TC.Position = Vector 3. new( 47.909 , 2075.744 , 180.469 ) |
10 | TC.Parent = workspace |
11 | script.Disabled = true |
12 | wait( 5 ) |
13 | script.Disabled = false |
14 |
15 | end |
16 | end ) |
17 | end ) |
the reason it might work is cause. yes. you touch It and it clones. gives you the thing. blah. but then. maybe it thinks it keeps touching the ground so it keep cloning? also you might have to add another "end" cause I dont know, I didn't write this in roblox studio. just try it?