Advertisement
PapierLP

[🤝 TRADING!] Clicking Legends Script

Jul 6th, 2020
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.66 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. end
  97. end,
  98. {
  99. options = {
  100. "1 Rebirth",
  101. "5 Rebirths",
  102. "15 Rebirths",
  103. "50 Rebirths",
  104. "100 Rebirths",
  105. "250 Rebirths",
  106. "750 Rebirths",
  107. "2,750 Rebirths",
  108. "10,500 Rebirths",
  109. "25,250 Rebirths",
  110. "52,520 Rebirths",
  111. "75,950 Rebirths",
  112. "105,250 Rebirths",
  113. "210,000 Rebirths",
  114. "350,000 Rebirths",
  115. "600,000 Rebirths",
  116. },
  117. default = "1 Rebirth",
  118. search = false,
  119. }
  120. )
  121.  
  122. --// Egg Tab
  123. openeggs:Create(
  124. "Dropdown",
  125. "Egg Selector",
  126. function(Option)
  127. if Option == "Common Egg" then
  128. _G.SEGG = "Common Egg"
  129. elseif Option == "Jagged Egg" then
  130. _G.SEGG = "Jagged Egg"
  131. elseif Option == "Candy Egg" then
  132. _G.SEGG = "Candy Egg"
  133. elseif Option == "Space Egg" then
  134. _G.SEGG = "Space Egg"
  135. elseif Option == "Frozen Egg" then
  136. _G.SEGG = "Frozen Egg"
  137. elseif Option == "Water Egg" then
  138. _G.SEGG = "Water Egg"
  139. elseif Option == "Patriotic Egg" then
  140. _G.SEGG = "Patriotic Egg"
  141. end
  142. end,
  143. {
  144. options = {
  145. "Common Egg",
  146. "Jagged Egg",
  147. "Candy Egg",
  148. "Space Egg",
  149. "Frozen Egg",
  150. "Water Egg",
  151. "Patriotic Egg",
  152. },
  153. default = "Common Egg",
  154. search = false,
  155. }
  156. )
  157.  
  158. openeggs:Create(
  159. "Toggle",
  160. "Auto Open 1 Egg",
  161. function(EggState)
  162. if EggState then
  163. _G.eggyopen = true
  164. else
  165. _G.eggyopen = false
  166. end
  167. end,
  168. {
  169. default = false,
  170. }
  171. )
  172. openeggs:Create(
  173. "Toggle",
  174. "Auto Open 3 Eggs",
  175. function(Egg3State)
  176. if Egg3State then
  177. _G.eggy3open = true
  178. else
  179. _G.eggy3open = false
  180. end
  181. end,
  182. {
  183. default = false,
  184. }
  185. )
  186.  
  187. openeggs:Create(
  188. "Toggle",
  189. "Auto Delete All Unlocked Pets (Not legendary's)",
  190. function(DelState)
  191. if DelState then
  192. _G.delete = true
  193. else
  194. _G.delete = false
  195. end
  196. end,
  197. {
  198. default = false,
  199. }
  200. )
  201.  
  202. --// Setting Tab
  203. csection:Create(
  204. "Slider",
  205. "WalkSpeed",
  206. function(value)
  207. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(value)
  208. end,
  209. {
  210. min = WalkSpeed,
  211. max = 150,
  212. -- Optional
  213. default = WalkSpeed,
  214. precise = true,
  215. changablevalue = true
  216. }
  217. )
  218. csection:Create(
  219. "Slider",
  220. "JumpPower",
  221. function(value)
  222. game.Players.LocalPlayer.Character.Humanoid.JumpPower = tonumber(value)
  223. end,
  224. {
  225. min = JumpPower,
  226. max = 250,
  227. -- Optional
  228. default = JumpPower,
  229. precise = true, -- ex: 0.1, 0.2, 0.3
  230. changablevalue = true
  231. }
  232. )
  233. ssection:Create(
  234. "KeyBind",
  235. "Toggle UI",
  236. function()
  237. if game:GetService("CoreGui").Zypher.Enabled == true then
  238. game:GetService("CoreGui").Zypher.Enabled = false
  239. else
  240. game:GetService("CoreGui").Zypher.Enabled = true
  241. end
  242. end,
  243. {
  244. default = Enum.KeyCode.P
  245. }
  246. )
  247. ssection:Create(
  248. "Button",
  249. "Destroy UI",
  250. function()
  251. game:GetService("CoreGui"):FindFirstChild("Zypher"):Destroy()
  252. end,
  253. {
  254. animated = true,
  255. }
  256. )
  257.  
  258. --// Functions
  259. spawn(function()
  260. while wait() do
  261. if _G.Click then
  262. local args = {
  263. [1] = "Click",
  264. }
  265.  
  266. for i = 1, 10 do
  267. game:GetService("ReplicatedStorage").Modules.Network.RemoteEvent:FireServer(unpack(args))
  268. end
  269. end
  270. end
  271. end)
  272. spawn(function()
  273. while wait(.5) do
  274. if _G.autorebirth then
  275. local argso = {
  276. [1] = "Rebirth",
  277. [2] = _G.SRebirth,
  278. }
  279.  
  280. game:GetService("ReplicatedStorage").Modules.Network.RemoteEvent:FireServer(unpack(argso))
  281. end
  282. end
  283. end)
  284. spawn(function()
  285. while wait(.25) do
  286. if _G.eggyopen then
  287. local args = {
  288. [1] = "OpenEgg",
  289. [2] = "Single",
  290. [3] = _G.SEGG,
  291. }
  292.  
  293. game:GetService("ReplicatedStorage").Modules.Network.RemoteFunction:InvokeServer(unpack(args))
  294. end
  295. end
  296. end)
  297. spawn(function()
  298. while wait(.25) do
  299. if _G.eggy3open then
  300. local args = {
  301. [1] = "OpenEgg",
  302. [2] = "Triple",
  303. [3] = _G.SEGG,
  304. }
  305.  
  306. game:GetService("ReplicatedStorage").Modules.Network.RemoteFunction:InvokeServer(unpack(args))
  307. end
  308. end
  309. end)
  310. spawn(function()
  311. while wait() do
  312. if _G.delete then
  313. game:GetService("ReplicatedStorage").Modules.Network.RemoteEvent:FireServer("DeleteAllUnlocked")
  314. end
  315. end
  316. end)
  317.  
  318. --// Anti Afk
  319. game:GetService("Players").LocalPlayer.Idled:Connect(function()
  320. VirtualUser:CaptureController()
  321. VirtualUser:ClickButton2(Vector2.new())
  322. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement