I want to have eggs spawned in certain places but after someone picks them up, they don’t despawn for everyone else. What’s the best way that I can do that? Currently, when someone finds an egg and picks it up, the egg disappears for everyone.
local MiddlePart = --Your part
local RandomX = math.random(-500, 500)
local RandomY = math.random(-500, 500)
local RandomZ = math.random(-500, 500)
local Egg = Youregg:Clone()
while wait(1) do
Egg.Position = Vector3.new(RandomX,RandomY,RandomZ)
Egg.Parent = workspace
end