Hi, so I need to make it so when you pick up an item it respawns after 5 seconds. I was able to make it pick up but not respawn. Thanks for the help!
Place this line in method which you used to pick up:
Invoke("Respawn",5f);
And create a method to respawn:
void Respawn()
{
//Your spawning code
}