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?
- Put the tool in Lighting / ReplicatedStorage.
- 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