Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local character = game.Players.LocalPlayer.Character
- local b = character.HumanoidRootPart.CFrame
- while wait(1) do
- for _,v in pairs(game:GetService("Workspace"):GetChildren()) do
- if v.Name == "EggPickup" then
- if v:FindFirstChild("Base") then
- --v.Base.CFrame = character.HumanoidRootPart.CFrame not gud
- character.HumanoidRootPart.CFrame = v.Base.CFrame
- wait(0.4)
- end
- end
- end
- character.HumanoidRootPart.CFrame = b
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement