#Cant have 2 of the same cloned tool in backpack at the same time.

19 messages · Page 1 of 1 (latest)

burnt delta
#

Whenever I try to clone the same tool into my backpack while the same tool is already in it, it doesn't show up? should i be cloning it to somewhere else or what? I already looked it up but it seems that other people have no problem cloning however many they want into their backpack

elfin glacier
#

send me ur script

#

@burnt delta

burnt delta
#

Okay one second.

#
COSpawn.ClickDetector.MouseClick:Connect(function(playerWhoClicked)
    game.Workspace.OilStart1.BrickColor = BrickColor.new("Really black")
    game.Workspace.OilStart1.ClickDetector.MaxActivationDistance = 32
    COSpawn.Grab.Playing = true
    CODispense.Parent = playerWhoClicked.Backpack
    COSpawn.Parent = game.ReplicatedStorage
end)
#

Just a simple giver script

#

via clickdetector

elfin glacier
#

i see

#

try this

#

@burnt delta

#
COSpawn.ClickDetector.MouseClick:Connect(function(playerWhoClicked)
    game.Workspace.OilStart1.BrickColor = BrickColor.new("Really black")
    game.Workspace.OilStart1.ClickDetector.MaxActivationDistance = 32
    COSpawn.Grab.Playing = true
    local CODispenseClone = CODispense:Clone() -- make a copy of the tool
    CODispenseClone.Parent = playerWhoClicked.Backpack -- set its parent to the backpack
    COSpawn.Parent = game.ReplicatedStorage
end)
burnt delta
#

alright

#

I will try it

elfin glacier
#

kk

burnt delta
#

tysm

#

It worked

#

So you just re-cloned the tool right?

elfin glacier
#

yes

#

did the Clone()