Advertisement
PapierLP

Clicking Legends

Jul 10th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.97 KB | None | 0 0
  1. --// idfk anymore
  2. local Zypher = game:GetService("CoreGui"):FindFirstChild("Zypher")
  3. if Zypher then
  4. Zypher:Destroy()
  5. end
  6.  
  7. --// Other Important Stuff
  8. local library = loadstring(game:HttpGet("https://zypher.wtf/UI-Lib"))()
  9. local main = library:CreateMain("Zypher")
  10. local players = game.Players:GetPlayers()
  11. local plr = game.Players.LocalPlayer
  12. local RunService = game:GetService("RunService")
  13. local VirtualUser = game:GetService("VirtualUser")
  14. local WalkSpeed = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
  15. local JumpPower = game.Players.LocalPlayer.Character.Humanoid.JumpPower
  16. _G.SRebirth = 1
  17. _G.SEGG = "Common Egg"
  18.  
  19. --// Categories
  20. local stuff = main:CreateCategory("Stuff")
  21. local settings = main:CreateCategory("Settings")
  22.  
  23. --// Sections
  24. local farming = stuff:CreateSection("Farming")
  25. local openeggs = stuff:CreateSection("Auto Open Eggs")
  26. local csection = settings:CreateSection("Character")
  27. local ssection = settings:CreateSection("UI Stuff")
  28.  
  29. --// Farming Tab
  30. farming:Create(
  31. "Toggle",
  32. "Auto Click",
  33. function(ClickState)
  34. if ClickState then
  35. _G.Click = true
  36. else
  37. _G.Click = false
  38. end
  39. end,
  40. {
  41. default = false,
  42. }
  43. )
  44.  
  45. farming:Create(
  46. "Toggle",
  47. "Auto Rebirth",
  48. function(RebirthState)
  49. if RebirthState then
  50. _G.autorebirth = true
  51. else
  52. _G.autorebirth = false
  53. end
  54. end,
  55. {
  56. default = false,
  57. }
  58. )
  59.  
  60. farming:Create(
  61. "Dropdown",
  62. "Rebirth Selector",
  63. function(RebOption)
  64. if RebOption == "1 Rebirth" then
  65. _G.SRebirth = 1
  66. elseif RebOption == "5 Rebirths" then
  67. _G.SRebirth = 5
  68. elseif RebOption == "15 Rebirths" then
  69. _G.SRebirth = 15
  70. elseif RebOption == "50 Rebirths" then
  71. _G.SRebirth = 50
  72. elseif RebOption == "100 Rebirths" then
  73. _G.SRebirth = 100
  74. elseif RebOption == "250 Rebirths" then
  75. _G.SRebirth = 250
  76. elseif RebOption == "750 Rebirths" then
  77. _G.SRebirth = 750
  78. elseif RebOption == "2,750 Rebirths" then
  79. _G.SRebirth = 2750
  80. elseif RebOption == "10,500 Rebirths" then
  81. _G.SRebirth = 10500
  82. elseif RebOption == "25,250 Rebirths" then
  83. _G.SRebirth = 25250
  84. elseif RebOption == "52,520 Rebirths" then
  85. _G.SRebirth = 52520
  86. elseif RebOption == "75,950 Rebirths" then
  87. _G.SRebirth = 75,950
  88. elseif RebOption == "105,250 Rebirths" then
  89. _G.SRebirth = 105250
  90. elseif RebOption == "210,000 Rebirths" then
  91. _G.SRebirth = 210000
  92. elseif RebOption == "350,000 Rebirths" then
  93. _G.SRebirth = 350000
  94. elseif RebOption == "600,000 Rebirths" then
  95. _G.SRebirth = 600000
  96. elseif RebOption == "1,000,000 Rebirths" then
  97. _G.SRebirth = 1000000
  98. elseif RebOption == "1,250,000 Rebirths" then
  99. _G.SRebirth = 1250000
  100. end
  101. end,
  102. {
  103. options = {
  104. "1 Rebirth",
  105. "5 Rebirths",
  106. "15 Rebirths",
  107. "50 Rebirths",
  108. "100 Rebirths",
  109. "250 Rebirths",
  110. "750 Rebirths",
  111. "2,750 Rebirths",
  112. "10,500 Rebirths",
  113. "25,250 Rebirths",
  114. "52,520 Rebirths",
  115. "75,950 Rebirths",
  116. "105,250 Rebirths",
  117. "210,000 Rebirths",
  118. "350,000 Rebirths",
  119. "600,000 Rebirths",
  120. "1,000,000 Rebirths",
  121. "1,250,000 Rebirths",
  122. },
  123. default = "1 Rebirth",
  124. search = false,
  125. }
  126. )
  127.  
  128. --// Egg Tab
  129. openeggs:Create(
  130. "Dropdown",
  131. "Egg Selector",
  132. function(Option)
  133. if Option == "Common Egg" then
  134. _G.SEGG = "Common Egg"
  135. elseif Option == "Jagged Egg" then
  136. _G.SEGG = "Jagged Egg"
  137. elseif Option == "Candy Egg" then
  138. _G.SEGG = "Candy Egg"
  139. elseif Option == "Space Egg" then
  140. _G.SEGG = "Space Egg"
  141. elseif Option == "Frozen Egg" then
  142. _G.SEGG = "Frozen Egg"
  143. elseif Option == "Water Egg" then
  144. _G.SEGG = "Water Egg"
  145. elseif Option == "Patriotic Egg" then
  146. _G.SEGG = "Patriotic Egg"
  147. elseif Option == "Mushroom Egg" then
  148. _G.SEGG = "Mushroom Egg"
  149. elseif Option == "Celebration Egg" then
  150. _G.SEGG = "Celebration Egg"
  151. end
  152. end,
  153. {
  154. options = {
  155. "Common Egg",
  156. "Jagged Egg",
  157. "Candy Egg",
  158. "Space Egg",
  159. "Frozen Egg",
  160. "Water Egg",
  161. "Patriotic Egg",
  162. "Mushroom Egg",
  163. "Celebration Egg",
  164. },
  165. default = "Common Egg",
  166. search = false,
  167. }
  168. )
  169.  
  170. openeggs:Create(
  171. "Toggle",
  172. "Auto Open 1 Egg",
  173. function(EggState)
  174. if EggState then
  175. _G.eggyopen = true
  176. else
  177. _G.eggyopen = false
  178. end
  179. end,
  180. {
  181. default = false,
  182. }
  183. )
  184. openeggs:Create(
  185. "Toggle",
  186. "Auto Open 3 Eggs",
  187. function(Egg3State)
  188. if Egg3State then
  189. _G.eggy3open = true
  190. else
  191. _G.eggy3open = false
  192. end
  193. end,
  194. {
  195. default = false,
  196. }
  197. )
  198.  
  199. openeggs:Create(
  200. "Toggle",
  201. "Auto Delete All Unlocked Pets (Not legendary's)",
  202. function(DelState)
  203. if DelState then
  204. _G.delete = true
  205. else
  206. _G.delete = false
  207. end
  208. end,
  209. {
  210. default = false,
  211. }
  212. )
  213.  
  214. --// Setting Tab
  215. csection:Create(
  216. "Slider",
  217. "WalkSpeed",
  218. function(value)
  219. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(value)
  220. end,
  221. {
  222. min = WalkSpeed,
  223. max = 150,
  224. -- Optional
  225. default = WalkSpeed,
  226. precise = true,
  227. changablevalue = true
  228. }
  229. )
  230. csection:Create(
  231. "Slider",
  232. "JumpPower",
  233. function(value)
  234. game.Players.LocalPlayer.Character.Humanoid.JumpPower = tonumber(value)
  235. end,
  236. {
  237. min = JumpPower,
  238. max = 250,
  239. -- Optional
  240. default = JumpPower,
  241. precise = true, -- ex: 0.1, 0.2, 0.3
  242. changablevalue = true
  243. }
  244. )
  245. ssection:Create(
  246. "KeyBind",
  247. "Toggle UI",
  248. function()
  249. if game:GetService("CoreGui").Zypher.Enabled == true then
  250. game:GetService("CoreGui").Zypher.Enabled = false
  251. else
  252. game:GetService("CoreGui").Zypher.Enabled = true
  253. end
  254. end,
  255. {
  256. default = Enum.KeyCode.P
  257. }
  258. )
  259. ssection:Create(
  260. "Button",
  261. "Destroy UI",
  262. function()
  263. game:GetService("CoreGui"):FindFirstChild("Zypher"):Destroy()
  264. end,
  265. {
  266. animated = true,
  267. }
  268. )
  269.  
  270. --// Functions
  271. spawn(function()
  272. while wait() do
  273. if _G.Click then
  274. local args = {
  275. [1] = "Click",
  276. }
  277.  
  278. for i = 1, 10 do
  279. game:GetService("ReplicatedStorage").Modules.Network.RemoteEvent:FireServer(unpack(args))
  280. end
  281. end
  282. end
  283. end)
  284. spawn(function()
  285. while wait(.5) do
  286. if _G.autorebirth then
  287. local argso = {
  288. [1] = "Rebirth",
  289. [2] = _G.SRebirth,
  290. }
  291.  
  292. game:GetService("ReplicatedStorage").Modules.Network.RemoteEvent:FireServer(unpack(argso))
  293. end
  294. end
  295. end)
  296. spawn(function()
  297. while wait(.25) do
  298. if _G.eggyopen then
  299. local args = {
  300. [1] = "OpenEgg",
  301. [2] = "Single",
  302. [3] = _G.SEGG,
  303. }
  304.  
  305. game:GetService("ReplicatedStorage").Modules.Network.RemoteFunction:InvokeServer(unpack(args))
  306. end
  307. end
  308. end)
  309. spawn(function()
  310. while wait(.25) do
  311. if _G.eggy3open then
  312. local args = {
  313. [1] = "OpenEgg",
  314. [2] = "Triple",
  315. [3] = _G.SEGG,
  316. }
  317.  
  318. game:GetService("ReplicatedStorage").Modules.Network.RemoteFunction:InvokeServer(unpack(args))
  319. end
  320. end
  321. end)
  322. spawn(function()
  323. while wait() do
  324. if _G.delete then
  325. game:GetService("ReplicatedStorage").Modules.Network.RemoteEvent:FireServer("DeleteAllUnlocked")
  326. end
  327. end
  328. end)
  329.  
  330. --// Anti Afk
  331. game:GetService("Players").LocalPlayer.Idled:Connect(function()
  332. VirtualUser:CaptureController()
  333. VirtualUser:ClickButton2(Vector2.new())
  334. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement