Advertisement
ScripterYowai

Animal Race (Raw)

Jun 14th, 2024 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. -- Lib
  2.  
  3. local Mercury = loadstring(game:HttpGet("https://raw.githubusercontent.com/deeeity/mercury-lib/master/src.lua"))()
  4.  
  5. -- Gui
  6.  
  7. local GUI = Mercury:Create{
  8. Name = "YowaiHub",
  9. Size = UDim2.fromOffset(600, 400),
  10. Theme = Mercury.Themes.Dark,
  11. Link = "SubToScripter_Yowai"
  12. }
  13.  
  14. -- Main Tab
  15. local AutoFarmTab = GUI:Tab{
  16. Name = "AutoFarm",
  17. Icon = "rbxassetid://8569322835"
  18. }
  19.  
  20. -- local variables
  21. local autoclick = false
  22.  
  23. local influckpotion = false
  24.  
  25. local infwinpotion = false
  26.  
  27. local infstrengthpotion = false
  28.  
  29. local autorebirth = false
  30.  
  31. local infwin = false
  32.  
  33. -- Toggel For AutoClick
  34. AutoFarmTab:Toggle{
  35. Name = "AutoClick",
  36. StartingState = false,
  37. Description = "AutoClicks",
  38. Callback = function(state)
  39. autoclick = state
  40. while autoclick do
  41.  
  42. game:GetService("ReplicatedStorage").Remotes.Training.Train:FireServer("Click28","Sewer")
  43. wait()
  44. end
  45. end
  46. }
  47.  
  48. -- Toggel For Infx2luck
  49. AutoFarmTab:Toggle{
  50. Name = "Inf Luck Potion",
  51. StartingState = false,
  52. Description = "OnForLuckPotion",
  53. Callback = function(state)
  54. influckpotion = state
  55. while influckpotion do
  56.  
  57. game:GetService("ReplicatedStorage").Remotes.Multiplier.UpdateMultiplier:FireServer("x2Luck",900,"Potion")
  58. wait()
  59. end
  60. end
  61. }
  62.  
  63. -- Toggel For Infx2winPotion
  64. AutoFarmTab:Toggle{
  65. Name = "Inf Win Potion",
  66. StartingState = false,
  67. Description = "OnForWinPotion",
  68. Callback = function(state)
  69. infwinpotion = state
  70. while infwinpotion do
  71.  
  72. game:GetService("ReplicatedStorage").Remotes.Multiplier.UpdateMultiplier:FireServer("x2Wins",900,"Potion")
  73. wait()
  74. end
  75. end
  76. }
  77.  
  78. -- Toggel For Infx2strength
  79. AutoFarmTab:Toggle{
  80. Name = "Inf Strength Potion",
  81. StartingState = false,
  82. Description = "OnForStrengthPotion",
  83. Callback = function(state)
  84. infstrengthpotion = state
  85. while infstrengthpotion do
  86.  
  87. game:GetService("ReplicatedStorage").Remotes.Multiplier.UpdateMultiplier:FireServer("x2Strength",900,"Potion")
  88. wait()
  89. end
  90. end
  91. }
  92.  
  93. -- Toggel For AutoRebirth
  94. AutoFarmTab:Toggle{
  95. Name = "Autorebirth",
  96. StartingState = false,
  97. Description = "AutoRebirths",
  98. Callback = function(state)
  99. autorebirth = state
  100. while autorebirth do
  101. game:GetService("ReplicatedStorage").Remotes.Rebirth.Rebirth:InvokeServer("Wins")
  102. wait()
  103. end
  104. end
  105. }
  106.  
  107. -- Toggel For InfWins
  108.  
  109. AutoFarmTab:Toggle{
  110. Name = "Inf Wins",
  111. StartingState = false,
  112. Description = "OnForInfWins",
  113. Callback = function(state)
  114. infwin = state
  115. while infwin do
  116.  
  117. game:GetService("ReplicatedStorage").Remotes.Race.AwardRace:FireServer("Mars",4)
  118. wait()
  119. end
  120. end
  121. }
  122.  
  123. -- Button GettingBestPet
  124. AutoFarmTab:Button{
  125. Name = "GetBestPet",
  126. Description = "Can do multiple times just rejoin",
  127. Callback = function()
  128. game:GetService("ReplicatedStorage").Remotes.Eggs.Hatch:InvokeServer("Girl Egg",1)
  129. end
  130. }
  131. -- Button EquipBest
  132. AutoFarmTab:Button{
  133. Name = "EquipBestPet",
  134. Description = "EquipsBestpet",
  135. Callback = function()
  136.  
  137. game:GetService("ReplicatedStorage").Remotes.Pets.EquipBestPets:FireServer()
  138. end
  139. }
  140.  
  141. local function showNotification(message)
  142. for _, player in ipairs(game.Players:GetPlayers()) do
  143. game.StarterGui:SetCore("SendNotification", {
  144. Title = "Credits",
  145. Text = message,
  146. Duration = 5
  147. })
  148. end
  149. end
  150.  
  151. local creditsMessage = "Credits to ScripterYowai"
  152. showNotification(creditsMessage)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement