Advertisement
Gur0v

Sword Swing Simulator - Auto Open Eggs

May 29th, 2023 (edited)
776
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.55 KB | None | 0 0
  1. --[[                                            
  2.                                              
  3. VVVVVVVV           VVVVVVVV555555555555555555
  4. V::::::V           V::::::V5::::::::::::::::5
  5. V::::::V           V::::::V5::::::::::::::::5
  6. V::::::V           V::::::V5:::::555555555555
  7.  V:::::V           V:::::V 5:::::5            
  8.   V:::::V         V:::::V  5:::::5            
  9.    V:::::V       V:::::V   5:::::5555555555  
  10.     V:::::V     V:::::V    5:::::::::::::::5  
  11.      V:::::V   V:::::V     555555555555:::::5
  12.       V:::::V V:::::V                  5:::::5
  13.        V:::::V:::::V                   5:::::5
  14.         V:::::::::V        5555555     5:::::5
  15.          V:::::::V         5::::::55555::::::5
  16.           V:::::V           55:::::::::::::55
  17.            V:::V              55:::::::::55  
  18.             VVV                 555555555    
  19.                                              
  20. ]]
  21.  
  22.  
  23. local waitTime = 3.5 -- [[ Anything Below 3.5 Won't Change Opening Speed ]]
  24. local eggName = "NarutoEgg" -- [[ You Can Use Simple/Turtle Spy To Get The Egg Name ]]
  25. local logMsg = "Opened 1 Egg" -- [[ Leave Blank If You Dont Need Logs ]]
  26. local openingMethod = 1 -- [[ 1 For Single Opening, 2 For Triple Opening (Must Have The Gamepass) ]]
  27.  
  28. while wait(waitTime) do -- [[ Looping The Script ]]
  29. local args = {
  30.     [1] = openingMethod,
  31.     [2] = eggName
  32. }
  33. print(logMsg) -- [[ Press F9 To See Logs ]]
  34. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Eggs"):WaitForChild("OpenEggWithMode"):InvokeServer(unpack(args)) -- [[ Remotes ]]
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement