PapierLP

Candy Simulator

Aug 20th, 2020
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/preztel/AzureLibrary/master/uilib.lua", true))()
  2.  
  3. local AutoTab = Library:CreateTab("Auto Rebirth","Mikes Geheime Cheat Sachen", true)
  4.  
  5. AutoTab:CreateToggle("Click", function(arg) --the (arg) is if the checkbox is toggled or not
  6. if arg then
  7. _G.Basic = true
  8. while wait(0) and _G.Basic do
  9. game:GetService("ReplicatedStorage").Shared.RemoteEvents.Click:FireServer()
  10. end
  11. else
  12. _G.Basic = false
  13. end
  14. end)
  15. AutoTab:CreateToggle("Rebirth 1", function(arg) --the (arg) is if the checkbox is toggled or not
  16. if arg then
  17. _G.Basic = true
  18. while wait(0) and _G.Basic do
  19. local args = {
  20. [1] = "1"
  21. }
  22.  
  23. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.Rebirth:InvokeServer(unpack(args))
  24.  
  25. end
  26. else
  27. _G.Basic = false
  28. end
  29. end)
  30. AutoTab:CreateToggle("Rebirth 10", function(arg) --the (arg) is if the checkbox is toggled or not
  31. if arg then
  32. _G.Basic = true
  33. while wait(0) and _G.Basic do
  34. local args = {
  35. [1] = "10"
  36. }
  37.  
  38. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.Rebirth:InvokeServer(unpack(args))
  39.  
  40. end
  41. else
  42. _G.Basic = false
  43. end
  44. end)
  45. AutoTab:CreateToggle("Rebirth 50", function(arg) --the (arg) is if the checkbox is toggled or not
  46. if arg then
  47. _G.Basic = true
  48. while wait(0) and _G.Basic do
  49. local args = {
  50. [1] = "50"
  51. }
  52.  
  53. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.Rebirth:InvokeServer(unpack(args))
  54.  
  55. end
  56. else
  57. _G.Basic = false
  58. end
  59. end)
  60. AutoTab:CreateToggle("Rebirth 500", function(arg) --the (arg) is if the checkbox is toggled or not
  61. if arg then
  62. _G.Basic = true
  63. while wait(0) and _G.Basic do
  64. local args = {
  65. [1] = "500"
  66. }
  67.  
  68. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.Rebirth:InvokeServer(unpack(args))
  69.  
  70. end
  71. else
  72. _G.Basic = false
  73. end
  74. end)
  75. AutoTab:CreateToggle("Rebirth 1k", function(arg) --the (arg) is if the checkbox is toggled or not
  76. if arg then
  77. _G.Basic = true
  78. while wait(0) and _G.Basic do
  79. local args = {
  80. [1] = "1000"
  81. }
  82.  
  83. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.Rebirth:InvokeServer(unpack(args))
  84.  
  85. end
  86. else
  87. _G.Basic = false
  88. end
  89. end)
  90. local AutoTab = Library:CreateTab("Auto Egg Open 3x","Mikes Geheime Cheat Sachen", true)
  91. AutoTab:CreateToggle("Common Egg 100", function(arg) --the (arg) is if the checkbox is toggled or not
  92. if arg then
  93. _G.Basic = true
  94. while wait(0) and _G.Basic do
  95. local args = {
  96. [1] = "Common",
  97. [2] = "R"
  98. }
  99.  
  100. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.OpenEgg:InvokeServer(unpack(args))
  101.  
  102. end
  103. else
  104. _G.Basic = false
  105. end
  106. end)
  107. AutoTab:CreateToggle("Candy Egg 2.5k", function(arg) --the (arg) is if the checkbox is toggled or not
  108. if arg then
  109. _G.Basic = true
  110. while wait(0) and _G.Basic do
  111. local args = {
  112. [1] = "Candy",
  113. [2] = "R"
  114. }
  115.  
  116. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.OpenEgg:InvokeServer(unpack(args))
  117.  
  118. end
  119. else
  120. _G.Basic = false
  121. end
  122. end)
  123. AutoTab:CreateToggle("Snow Egg 15k", function(arg) --the (arg) is if the checkbox is toggled or not
  124. if arg then
  125. _G.Basic = true
  126. while wait(0) and _G.Basic do
  127. local args = {
  128. [1] = "Snow",
  129. [2] = "R"
  130. }
  131.  
  132. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.OpenEgg:InvokeServer(unpack(args))
  133.  
  134. end
  135. else
  136. _G.Basic = false
  137. end
  138. end)
  139.  
  140. AutoTab:CreateToggle("Lava Egg 50k", function(arg) --the (arg) is if the checkbox is toggled or not
  141. if arg then
  142. _G.Basic = true
  143. while wait(0) and _G.Basic do
  144. local args = {
  145. [1] = "Lava",
  146. [2] = "R"
  147. }
  148.  
  149. game:GetService("ReplicatedStorage").Shared.RemoteFunctions.OpenEgg:InvokeServer(unpack(args))
  150.  
  151. end
  152. else
  153. _G.Basic = false
  154. end
  155. end)
  156. local AutoTab = Library:CreateTab("TP Zur Insel","Mikes Geheime Cheat Sachen", true)
  157. AutoTab:CreateToggle("Candy Welt", function(arg) --the (arg) is if the checkbox is toggled or not
  158. if arg then
  159. _G.Basic = true
  160. while wait(0) and _G.Basic do
  161. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(146, 358, -200)
  162. end
  163. else
  164. _G.Basic = false
  165. end
  166. end)
  167. AutoTab:CreateToggle("Snow Welt", function(arg) --the (arg) is if the checkbox is toggled or not
  168. if arg then
  169. _G.Basic = true
  170. while wait(0) and _G.Basic do
  171. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(147, 667, -195)
  172. end
  173. else
  174. _G.Basic = false
  175. end
  176. end)
  177. AutoTab:CreateToggle("Lava Welt", function(arg) --the (arg) is if the checkbox is toggled or not
  178. if arg then
  179. _G.Basic = true
  180. while wait(0) and _G.Basic do
  181. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(150, 905, -200)
  182. end
  183. else
  184. _G.Basic = false
  185. end
  186. end)
Add Comment
Please, Sign In to add comment