Hello, im kinda confuse since im new in creating games here in roblox. My items in inventory duplicating every time i touched/clicked/pick up the item. How can i make the item pick up only once and it will never duplicate?
PS. that script i only got that from a tutorial in youtube.
local tool = game.ReplicatedStorage.Keys["Room 217"]
local giver = script.Parent
local canGive = false
local function GiveTool (player)
if canGive == false then
canGive = true
local clone = tool:Clone()
clone.Parent = player.Backpack
wait(1)
canGive = false
end
end
giver.ClickDetector.MouseClick:Connect(function(player)
GiveTool (player)
end)