1. game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(prompt)
  2. prompt.HoldDuration = 0
  3. end)
  4. local player = game.Players.LocalPlayer
  5. local humanoid = player.Character:WaitForChild("Humanoid")
  6. local rootPart = player.Character:WaitForChild("HumanoidRootPart")
  7. local coems = game:GetService("VirtualInputManager")
  8. game.StarterGui:SetCore("SendNotification", {
  9. Title = "Made your mom pregnant by";
  10. Text = "sadawrf#3405";
  11. Duration = 5;
  12. })
  13. while true do
  14. local closestPart = nil
  15. local closestDistance = math.huge
  16. for _, part in pairs(game:GetService("Workspace").Easter.Eggs:GetDescendants()) do
  17. if part:IsA("MeshPart") and part:FindFirstChild("CollectEgg") then
  18. local distance = (part.Position - rootPart.Position).magnitude
  19. if distance < closestDistance then
  20. closestPart = part
  21. closestDistance = distance
  22. end
  23. end
  24. end
  25. if closestPart then
  26. local tweenInfo = TweenInfo.new(closestDistance / math.huge, Enum.EasingStyle.Linear)
  27. local tween = game:GetService("TweenService"):Create(rootPart, tweenInfo, {CFrame = closestPart.CFrame})
  28. tween:Play()
  29. tween.Completed:Wait()
  30. coems:SendKeyEvent(true, "E", false, nil)
  31. task.wait()
  32. coems:SendKeyEvent(false, "E", false, nil)
  33. else
  34. task.wait()
  35. end
  36. end