Advertisement
FurkingBoi

Clicking Simulator 2

May 22nd, 2020
3,109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.18 KB | None | 0 0
  1. --// Main Stuff
  2. local player = game.Players.LocalPlayer
  3. local library = loadstring(game:HttpGet("https://pastebin.com/raw/LmbJDLzg",true))()
  4.  
  5. --// Other Stuff
  6. local char = player.Character
  7. local rs = game:GetService("RunService").RenderStepped
  8. local vu = game:GetService("VirtualUser")
  9. _G.remote = workspace.Events.Give2 --Prevents auto rebirth from breaking
  10. _G.SEgg = "Common" --Prevents auto open eggs from breaking
  11.  
  12. --// Tab Windows
  13. local Farming = library:CreateWindow("Farming")
  14. local Other = library:CreateWindow("Other")
  15. local EggOpen = library:CreateWindow("Auto Egg Open")
  16. local Settings = library:CreateWindow("Settings")
  17.  
  18. --// Window Parts
  19. Farming:Section("Auto Click + Rebirth")
  20. local SlowFarm = Farming:Toggle("Slow Farm", {flag = "SFarm"})
  21. local NormalFarm = Farming:Toggle("Normal Farm", {flag = "NFarm"})
  22. local FastFarm = Farming:Toggle("Fast Farm", {flag = "FFarm"})
  23.  
  24. Farming:Section("Rebirth Selector")
  25. local RebirthList = Farming:Dropdown("Select Rebirth", {
  26. location = _G;
  27. flag = "rebirth";
  28. list = {
  29. "1 Rebirth";
  30. "5 Rebirths";
  31. "15 Rebirths";
  32. "50 Rebirths";
  33. "100 Rebirths";
  34. "250 Rebirths";
  35. }
  36. }, function(rebi)
  37. if _G.rebirth == "1 Rebirth" then
  38. _G.remote = workspace.Events.Give2
  39. elseif _G.rebirth == "5 Rebirths" then
  40. _G.remote = workspace.Events.Give3
  41. elseif _G.rebirth == "15 Rebirths" then
  42. _G.remote = workspace.Events.Give4
  43. elseif _G.rebirth == "50 Rebirths" then
  44. _G.remote = workspace.Events.Give5
  45. elseif _G.rebirth == "100 Rebirths" then
  46. _G.remote = workspace.Events.Give7
  47. elseif _G.rebirth == "250 Rebirths" then
  48. _G.remote = workspace.Events.Give8
  49. end
  50. end)
  51.  
  52. Other:Section("Auto Clicker")
  53. local SlowClick = Other:Toggle("Slow Click", {flag = "SClick"})
  54. local NormalClick = Other:Toggle("Normal Click", {flag = "NClick"})
  55. local FastClick = Other:Toggle("Fast Click", {flag = "FClick"})
  56.  
  57. Other:Section("Auto Rebirth")
  58. local SlowRebirth = Other:Toggle("Slow Rebirth", {flag = "SRebirth"})
  59. local NormalRebirth = Other:Toggle("Normal Rebirth", {flag = "NRebirth"})
  60. local FastRebirth = Other:Toggle("Fast Rebirth", {flag = "FRebirth"})
  61.  
  62. EggOpen:Section("Egg Selector")
  63. local EggList = EggOpen:Dropdown("Select Egg", {
  64. location = _G;
  65. flag = "egg";
  66. list = {
  67. "Common";
  68. "Fruit";
  69. "Magma";
  70. "Water";
  71. "Scuba";
  72. "Event";
  73. }
  74. }, function(eggo)
  75. if _G.egg == "Common" then
  76. _G.SEgg = "Common"
  77. elseif _G.egg == "Fruit" then
  78. _G.SEgg = "Fruit"
  79. elseif _G.egg == "Magma" then
  80. _G.SEgg = "Magma"
  81. elseif _G.egg == "Water" then
  82. _G.SEgg = "Water"
  83. elseif _G.egg == "Scuba" then
  84. _G.SEgg = "Scuba"
  85. elseif _G.egg == "Event" then
  86. _G.SEgg = "Event"
  87. end
  88. end)
  89.  
  90. EggOpen:Section("Egg Toggles")
  91. local OpenOne = EggOpen:Toggle("Open 1 Egg", {flag = "O1E"})
  92. local OpenThree = EggOpen:Toggle("Open 3 Eggs", {flag = "O3E"})
  93.  
  94. local Destroy = Settings:Button("Destroy GUI", function()
  95. game.CoreGui.ScreenGui:Destroy()
  96. end)
  97.  
  98. --// Functions
  99. --// Auto Click
  100. spawn(function()
  101. while wait(.05) do
  102. if Other.flags.SClick then
  103. workspace.Events.Give:FireServer()
  104. end
  105. end
  106. end)
  107. spawn(function()
  108. while wait() do
  109. if Other.flags.NClick then
  110. workspace.Events.Give:FireServer()
  111. end
  112. end
  113. end)
  114. spawn(function()
  115. while rs:wait() do
  116. if Other.flags.FClick then
  117. for i = 1, 20 do
  118. workspace.Events.Give:FireServer()
  119. end
  120. end
  121. end
  122. end)
  123. --// Auto Rebirth
  124. spawn(function()
  125. while wait(.05) do
  126. if Other.flags.SRebirth then
  127. _G.remote:FireServer()
  128. end
  129. end
  130. end)
  131. spawn(function()
  132. while wait() do
  133. if Other.flags.NRebirth then
  134. _G.remote:FireServer()
  135. end
  136. end
  137. end)
  138. spawn(function()
  139. while rs:wait() do
  140. if Other.flags.FRebirth then
  141. for i = 1, 10 do
  142. _G.remote:FireServer()
  143. end
  144. end
  145. end
  146. end)
  147. --// Auto Click + Rebirth (Auto Farm)
  148. spawn(function()
  149. while wait(.05) do
  150. if Farming.flags.SFarm then
  151. workspace.Events.Give:FireServer()
  152. _G.remote:FireServer()
  153. end
  154. end
  155. end)
  156. spawn(function()
  157. while wait() do
  158. if Farming.flags.NFarm then
  159. workspace.Events.Give:FireServer()
  160. _G.remote:FireServer()
  161. end
  162. end
  163. end)
  164. spawn(function()
  165. while rs:wait() do
  166. if Farming.flags.FFarm then
  167. for i = 1, 10 do
  168. workspace.Events.Give:FireServer()
  169. _G.remote:FireServer()
  170. end
  171. end
  172. end
  173. end)
  174. --// Auto Open 1 Egg
  175. spawn(function()
  176. while wait() do
  177. if EggOpen.flags.O1E then
  178. local args = {
  179. [1] = game:GetService("Players").LocalPlayer,
  180. [2] = _G.SEgg,
  181. [3] = false,
  182. }
  183. game:GetService("ReplicatedStorage").KeyBind:InvokeServer(unpack(args))
  184. end
  185. end
  186. end)
  187. --// Auto Open 3 Eggs
  188. spawn(function()
  189. while wait() do
  190. if EggOpen.flags.O3E then
  191. local args = {
  192. [1] = game:GetService("Players").LocalPlayer,
  193. [2] = _G.SEgg,
  194. [3] = true,
  195. }
  196. game:GetService("ReplicatedStorage").KeyBind:InvokeServer(unpack(args))
  197. end
  198. end
  199. end)
  200.  
  201. local abcd = true
  202. Settings:Bind("Toggle Gui", {
  203. flag = "TGui";
  204. kbonly = true;
  205. default = Enum.KeyCode.LeftControl;
  206. }, function()
  207. if not abcd then
  208. abcd = true
  209. game.CoreGui.ScreenGui.Container.Visible = true
  210. else
  211. abcd = false
  212. game.CoreGui.ScreenGui.Container.Visible = false
  213. end
  214. end)
  215. --// Credits
  216. warn("[Clicking Simulator 2.0 Script]")
  217. warn("[Almost everything - Christmas ⭐#8335]")
  218. warn("[Auto Egg Open - food is good#0001]")
  219. --// Anti Afk
  220. game:GetService("Players").LocalPlayer.Idled:connect(function()
  221. vu:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  222. wait(1)
  223. vu:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  224. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement