Advertisement
Rin-Tohsaka

[EggHunt 2020] Super Doomspire - Roundcat Egg (pickup eggs)

Apr 7th, 2020
1,174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.65 KB | None | 0 0
  1. -- All credits to SilverBeast from v3rmillion.net - https://v3rmillion.net/showthread.php?tid=970623 / https://v3rmillion.net/member.php?action=profile&uid=795512
  2.  
  3. local character = game.Players.LocalPlayer.Character
  4. local b = character.HumanoidRootPart.CFrame
  5.  
  6. while wait(1) do
  7.     for _,v in pairs(game:GetService("Workspace"):GetChildren()) do
  8.     if v.Name == "EggPickup" then
  9.         if v:FindFirstChild("Base") then
  10.            --v.Base.CFrame = character.HumanoidRootPart.CFrame not gud
  11.            character.HumanoidRootPart.CFrame = v.Base.CFrame
  12.            wait(0.4)
  13.         end
  14.     end
  15.     end
  16.     character.HumanoidRootPart.CFrame = b
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement