How to copy a model from a script

I have a drink that I want to copy as an item the player can use when they press a button. How could I do this?

  1. Put the tool in Lighting / ReplicatedStorage.
  2. Follow this :
local tool = game.Lighting.BloxyCola -- change BloxyCola to your tool's name

script.Parent.ClickDetector.MouseClick:Connect(function(Player)
	local clone = tool:clone()
	clone.Parent = Player.Backpack
end)
1 Like

image