I need it for my game, i looking for tool script or something for 2 days and i cant find the way
You can do something like this. Using :Clone() to duplicate an instance.
local tool -- tool's location local clickdetector -- click detector location clickdetector.MouseClick:Connect(function(plr) local tool_cloned = tool:Clone tool_cloned.Parent = plr.Backpack end)