1. local plr = game.Players.localPlayer.Name
  2. for index, egg in pairs(game.Workspace.Eggs:GetChildren()) do
  3. if egg.Transparency == 0 then
  4. game.Workspace[plr].HumanoidRootPart.CFrame = egg.CFrame
  5. game.Players.localPlayer.Character.Humanoid.Jump = true
  6. wait(3)
  7. end
  8. end