Advertisement
Burkino

Untitled

Apr 7th, 2020
2,889
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. local character = game.Players.LocalPlayer.Character
  2. local b = character.HumanoidRootPart.CFrame
  3.  
  4. while wait(1) do
  5. for _,v in pairs(game:GetService("Workspace"):GetChildren()) do
  6. if v.Name == "EggPickup" then
  7. if v:FindFirstChild("Base") then
  8. --v.Base.CFrame = character.HumanoidRootPart.CFrame not gud
  9. character.HumanoidRootPart.CFrame = v.Base.CFrame
  10. wait(0.4)
  11. end
  12. end
  13. end
  14. character.HumanoidRootPart.CFrame = b
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement