Picking up an item multiple times

Hi, I’m working on a cafe type game, and you need to be able to get an item multiple times, but even when you get rid of the item, you can’t get the item again unless you leave and rejoin.
Script:


Video to show what I mean:


When I click on the pancake more times, I can’t get another pancake. (the other pancake does the same thing.) I need to be able to get more.
Thanks for your help!

After you pick up the item (“klone” in the script), you need to make another part in the same way that you did at the start of the script so that it can be picked up again.

Like this?


I made it clone the pancake again, but it still doesn’t work. I also checked if it enters ServerStorage and it doesn’t.

replace

local klone2 = tool:clone()
klone2.Parent = game.ServerStorage

with just

klone = tool:clone()
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.