Advertisement
kevinbuitendyk

Untitled

Mar 30th, 2018
1,214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. --Egg of Wishes Auto-Completion[Wonderland Grove]
  2. --You have to be in Wonderland Grove to use this script.
  3. --Created by Lelouch vi Britannia#1337
  4. --BlackHatHelper on v3rmillion.
  5. local PlayerChar = game:GetService("Players").LocalPlayer.Character
  6. local wellLoc = workspace.Eggs.EggObjects["Egg of Wishes"].WishingWell.WaterColor.WaterColor
  7. local selection = 0
  8. local E1 = game:GetService("ReplicatedStorage").NetworkRemotes.GrabItem
  9. local E2 = game:GetService("ReplicatedStorage").Events.RemoteEvents.TossCoin
  10.  
  11. for _,v in pairs(workspace:children()) do
  12. if v.Name == 'SilverCoin' then
  13. selection = selection + 1
  14. PlayerChar.HumanoidRootPart.CFrame = v.CFrame
  15. wait(0.2)
  16. E1:FireServer(v, true)
  17. wait(0.3)
  18. PlayerChar.HumanoidRootPart.CFrame = wellLoc.CFrame + Vector3.new(9,0,0)
  19. wait(0.2)
  20. E2:FireServer()
  21. wait(0.3)
  22. if selection == 3 then
  23. break
  24. end
  25. end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement