CodingSquid

Blob Sim GUI | Auto Updates

Nov 24th, 2018
4,582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.60 KB | None | 0 0
  1. -- Credits:
  2. print("")
  3. print("")
  4. print("")
  5. print("")
  6. print("")
  7. print("")
  8. print("")
  9. print("")
  10. print("")
  11. print("")
  12. print("")
  13. print("")
  14. print("")
  15. print("")
  16. print("")
  17. print("")
  18. print("")
  19. print("")
  20. print("")
  21. print("")
  22. print("")
  23. print("")
  24. print("")
  25. print("")
  26.  
  27. print("Created by ReallySecure#1297")
  28. print("Working!")
  29. print("Please join the discord for more information!")
  30. print("DONT LEECH!")
  31.  
  32. -- UI: --
  33.  
  34. local BlobSim = Instance.new("ScreenGui")
  35. local main = Instance.new("Frame")
  36. local theactualmovebar = Instance.new("Frame")
  37. local movebar = Instance.new("Frame")
  38. local unlockallrealms = Instance.new("TextButton")
  39. local spamall = Instance.new("TextButton")
  40. local rebirth500times = Instance.new("TextButton")
  41. local rebirth = Instance.new("TextButton")
  42. local killall = Instance.new("TextButton")
  43. local infmoney = Instance.new("TextButton")
  44. local infapples = Instance.new("TextButton")
  45. local getallfree = Instance.new("TextButton")
  46. local getallcookies = Instance.new("TextButton")
  47. local exit = Instance.new("TextButton")
  48. local deleteallpets = Instance.new("TextButton")
  49. local codes = Instance.new("TextButton")
  50. local bestpets = Instance.new("TextButton")
  51. local allpets = Instance.new("TextButton")
  52. local opthing = Instance.new("TextButton")
  53. --Properties:
  54. BlobSim.Name = "Blob Sim"
  55. BlobSim.Parent = game.CoreGui
  56.  
  57. main.Name = "main"
  58. main.Parent = BlobSim
  59. main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  60. main.BorderSizePixel = 0
  61. main.Position = UDim2.new(0.855590105, 0, 0.348368526, 0)
  62. main.Size = UDim2.new(0, 261, 0, 380)
  63.  
  64. theactualmovebar.Name = "theactualmovebar"
  65. theactualmovebar.Parent = main
  66. theactualmovebar.BackgroundColor3 = Color3.new(1, 1, 1)
  67. theactualmovebar.BackgroundTransparency = 4
  68. theactualmovebar.Size = UDim2.new(0, 261, 0, 30)
  69.  
  70. movebar.Name = "movebar"
  71. movebar.Parent = theactualmovebar
  72. movebar.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  73. movebar.BorderSizePixel = 0
  74. movebar.Size = UDim2.new(0, 261, 0, 30)
  75.  
  76. unlockallrealms.Name = "unlockallrealms"
  77. unlockallrealms.Parent = movebar
  78. unlockallrealms.BackgroundColor3 = Color3.new(1, 1, 1)
  79. unlockallrealms.Position = UDim2.new(0.544061303, 0, 4.69999981, 0)
  80. unlockallrealms.Size = UDim2.new(0, 109, 0, 25)
  81. unlockallrealms.Font = Enum.Font.SourceSans
  82. unlockallrealms.Text = "Unlock All Doors"
  83. unlockallrealms.TextColor3 = Color3.new(0, 0, 0)
  84. unlockallrealms.TextSize = 14
  85. unlockallrealms.MouseButton1Down:connect(function()
  86. for i,v in pairs(game.Workspace.GameStuff.RealmDoors:GetChildren()) do
  87. game.ReplicatedStorage.Events.ChangeMoney:FireServer(math.huge,"newkeycode")
  88. game.ReplicatedStorage.Events.RealmPurchase:FireServer(v)
  89. print("Purchased realm door:", v)
  90. end
  91. end)
  92.  
  93. spamall.Name = "spamall"
  94. spamall.Parent = movebar
  95. spamall.BackgroundColor3 = Color3.new(1, 1, 1)
  96. spamall.Position = UDim2.new(0.0498084277, 0, 8.10000038, 0)
  97. spamall.Size = UDim2.new(0, 143, 0, 25)
  98. spamall.Font = Enum.Font.SourceSans
  99. spamall.Text = "Spam All Players (Laggy)"
  100. spamall.TextColor3 = Color3.new(0, 0, 0)
  101. spamall.TextSize = 14
  102. spamall.MouseButton1Down:connect(function()
  103. while true do
  104. for i,v in pairs(game.Players:GetChildren()) do
  105. print("Sent trade to:", v)
  106. game.ReplicatedStorage.Events.SendTradeRequest:FireServer(v)
  107. end
  108. wait()
  109. end
  110. end)
  111.  
  112. rebirth500times.Name = "rebirth500times"
  113. rebirth500times.Parent = movebar
  114. rebirth500times.BackgroundColor3 = Color3.new(1, 1, 1)
  115. rebirth500times.Position = UDim2.new(0.0498084277, 0, 7, 0)
  116. rebirth500times.Size = UDim2.new(0, 174, 0, 25)
  117. rebirth500times.Font = Enum.Font.SourceSans
  118. rebirth500times.Text = "Rebirth 500 Times (Lags At First)"
  119. rebirth500times.TextColor3 = Color3.new(0, 0, 0)
  120. rebirth500times.TextSize = 14
  121. rebirth500times.MouseButton1Down:connect(function()
  122. for i = 1, 500 do
  123. game.ReplicatedStorage.Events.ChangeMoney:FireServer(math.huge,"newkeycode")
  124. game.ReplicatedStorage.Events.RebirthPlayer:FireServer(1000000, "newkeycode")
  125. print("I have rebirthed", i, "times.")
  126. end
  127. end)
  128.  
  129. rebirth.Name = "rebirth"
  130. rebirth.Parent = movebar
  131. rebirth.BackgroundColor3 = Color3.new(1, 1, 1)
  132. rebirth.Position = UDim2.new(0.544061303, 0, 1.4666667, 0)
  133. rebirth.Size = UDim2.new(0, 109, 0, 25)
  134. rebirth.Font = Enum.Font.SourceSans
  135. rebirth.Text = "Auto Rebirth"
  136. rebirth.TextColor3 = Color3.new(0, 0, 0)
  137. rebirth.TextSize = 14
  138. rebirth.MouseButton1Down:connect(function()
  139. while true do
  140. game.ReplicatedStorage.Events.ChangeTurkeyCoins:FireServer(math.huge0,"newkeycode")
  141. game.ReplicatedStorage.Events.ChangeApples:FireServer(math.huge,"newkeycode")
  142. game.ReplicatedStorage.Events.ChangeMoney:FireServer(math.huge,"newkeycode")
  143. wait(.3)
  144. game.ReplicatedStorage.Events.RebirthPlayer:FireServer(1000000, "newkeycode")
  145. end
  146. end)
  147.  
  148. killall.Name = "killall"
  149. killall.Parent = movebar
  150. killall.BackgroundColor3 = Color3.new(1, 1, 1)
  151. killall.Position = UDim2.new(0.678160906, 0, 5.90000153, 0)
  152. killall.Size = UDim2.new(0, 74, 0, 25)
  153. killall.Font = Enum.Font.SourceSans
  154. killall.Text = "Kill All Blobs"
  155. killall.TextColor3 = Color3.new(0, 0, 0)
  156. killall.TextSize = 14
  157. killall.MouseButton1Down:connect(function()
  158. local Blobs = game.workspace.GameStuff.Blobs
  159. local Damage = math.huge
  160. local lol = "newkeycode"
  161. local Event = game:GetService("ReplicatedStorage").Events.DealDamage
  162. for i,v in pairs(Blobs:GetDescendants()) do
  163. if v:IsA("Folder") and v.Name == "BlobProperties" then
  164. Event:FireServer(v, Damage, lol)
  165. end
  166. end
  167. end)
  168.  
  169. infmoney.Name = "infmoney"
  170. infmoney.Parent = movebar
  171. infmoney.BackgroundColor3 = Color3.new(1, 1, 1)
  172. infmoney.Position = UDim2.new(0.544061303, 0, 3.5999999, 0)
  173. infmoney.Size = UDim2.new(0, 109, 0, 25)
  174. infmoney.Font = Enum.Font.SourceSans
  175. infmoney.Text = "Inf Money"
  176. infmoney.TextColor3 = Color3.new(0, 0, 0)
  177. infmoney.TextSize = 14
  178. infmoney.MouseButton1Down:connect(function()
  179. game.ReplicatedStorage.Events.ChangeMoney:FireServer(math.huge,"newkeycode")
  180. end)
  181.  
  182.  
  183. infapples.Name = "infapples"
  184. infapples.Parent = movebar
  185. infapples.BackgroundColor3 = Color3.new(1, 1, 1)
  186. infapples.Position = UDim2.new(0.544061303, 0, 2.5333333, 0)
  187. infapples.Size = UDim2.new(0, 109, 0, 25)
  188. infapples.Font = Enum.Font.SourceSans
  189. infapples.Text = "Inf Apples"
  190. infapples.TextColor3 = Color3.new(0, 0, 0)
  191. infapples.TextSize = 14
  192. infapples.MouseButton1Down:connect(function()
  193. game.ReplicatedStorage.Events.ChangeApples:FireServer(math.huge,"newkeycode")
  194. end)
  195.  
  196. getallfree.Name = "getallfree"
  197. getallfree.Parent = movebar
  198. getallfree.BackgroundColor3 = Color3.new(1, 1, 1)
  199. getallfree.Position = UDim2.new(0.0498084277, 0, 5.9000001, 0)
  200. getallfree.Size = UDim2.new(0, 155, 0, 25)
  201. getallfree.Font = Enum.Font.SourceSans
  202. getallfree.Text = "Unlock All Tools & Backpacks"
  203. getallfree.TextColor3 = Color3.new(0, 0, 0)
  204. getallfree.TextSize = 14
  205. getallfree.MouseButton1Down:connect(function()
  206. for i,v in pairs(game.ReplicatedStorage.Shop:GetChildren()) do
  207. game.ReplicatedStorage.Events.GiveItem:FireServer(v, "newkeycode")
  208. print("Added Tool", v)
  209. end
  210. wait(.5)
  211. for i,v in pairs(game.ReplicatedStorage.BagShop:GetChildren()) do
  212. game.ReplicatedStorage.Events.GiveBag:FireServer(v, "newkeycode")
  213. print("Added bag", v)
  214. end
  215. end)
  216.  
  217. getallcookies.Name = "getallcookies"
  218. getallcookies.Parent = movebar
  219. getallcookies.BackgroundColor3 = Color3.new(1, 1, 1)
  220. getallcookies.Position = UDim2.new(0.0804597661, 0, 9.5, 0)
  221. getallcookies.Size = UDim2.new(0, 218, 0, 25)
  222. getallcookies.Font = Enum.Font.SourceSans
  223. getallcookies.Text = "Get All Event Currency (Auto Updates)"
  224. getallcookies.TextColor3 = Color3.new(0, 0, 0)
  225. getallcookies.TextSize = 14
  226. getallcookies.MouseButton1Down:connect(function()
  227. game.ReplicatedStorage.Events.ChangeCookies:FireServer(math.huge,"newkeycode")
  228. print("Set Cookies to: Infinity")
  229. end)
  230.  
  231. exit.Name = "exit"
  232. exit.Parent = movebar
  233. exit.BackgroundColor3 = Color3.new(1, 1, 1)
  234. exit.BackgroundTransparency = 1
  235. exit.BorderSizePixel = 0
  236. exit.Position = UDim2.new(0.83141762, 0, 0, 0)
  237. exit.Size = UDim2.new(0, 44, 0, 30)
  238. exit.Font = Enum.Font.SourceSans
  239. exit.Text = "X"
  240. exit.TextColor3 = Color3.new(1, 0, 0)
  241. exit.TextSize = 20
  242. exit.TextWrapped = true
  243. exit.MouseButton1Down:connect(function()
  244. main.Visible = false
  245. end)
  246.  
  247. deleteallpets.Name = "deleteallpets"
  248. deleteallpets.Parent = movebar
  249. deleteallpets.BackgroundColor3 = Color3.new(1, 1, 1)
  250. deleteallpets.Position = UDim2.new(0.0498084202, 0, 4.69999981, 0)
  251. deleteallpets.Size = UDim2.new(0, 109, 0, 25)
  252. deleteallpets.Font = Enum.Font.SourceSans
  253. deleteallpets.Text = "Delete All Pets"
  254. deleteallpets.TextColor3 = Color3.new(0, 0, 0)
  255. deleteallpets.TextSize = 14
  256. deleteallpets.MouseButton1Down:connect(function()
  257. for i,v in pairs(game.Players.LocalPlayer.PlayerPets:GetChildren()) do
  258. game.ReplicatedStorage.Events.DeletePet:FireServer(v)
  259. print("Deleted pet", v)
  260. end
  261. end)
  262.  
  263. codes.Name = "codes"
  264. codes.Parent = movebar
  265. codes.BackgroundColor3 = Color3.new(1, 1, 1)
  266. codes.Position = UDim2.new(0.0498084277, 0, 1.4666667, 0)
  267. codes.Size = UDim2.new(0, 109, 0, 25)
  268. codes.Font = Enum.Font.SourceSans
  269. codes.Text = "Codes"
  270. codes.TextColor3 = Color3.new(0, 0, 0)
  271. codes.TextSize = 14
  272. codes.MouseButton1Down:connect(function()
  273. print("I have used these codes:")
  274. for i,v in pairs(game.ReplicatedStorage.TwitterCodes:GetChildren()) do
  275. game.ReplicatedStorage.Events.TwitterCodeInput:FireServer(v)
  276. print(v)
  277. end
  278. end)
  279.  
  280.  
  281. bestpets.Name = "bestpets"
  282. bestpets.Parent = movebar
  283. bestpets.BackgroundColor3 = Color3.new(1, 1, 1)
  284. bestpets.Position = UDim2.new(0.0498084277, 0, 3.5999999, 0)
  285. bestpets.Size = UDim2.new(0, 109, 0, 25)
  286. bestpets.Font = Enum.Font.SourceSans
  287. bestpets.Text = "Best Pet"
  288. bestpets.TextColor3 = Color3.new(0, 0, 0)
  289. bestpets.TextSize = 14
  290. bestpets.MouseButton1Down:connect(function()
  291. local A_1 = game:GetService("ReplicatedStorage").Pets["Rainbow Mummy"]
  292. local A_2 = "newkeycode"
  293. local Event = game:GetService("ReplicatedStorage").Events.GivePet
  294. Event:FireServer(A_1, A_2)
  295. end)
  296.  
  297. allpets.Name = "allpets"
  298. allpets.Parent = movebar
  299. allpets.BackgroundColor3 = Color3.new(1, 1, 1)
  300. allpets.Position = UDim2.new(0.0498084277, 0, 2.5333333, 0)
  301. allpets.Size = UDim2.new(0, 109, 0, 25)
  302. allpets.Font = Enum.Font.SourceSans
  303. allpets.Text = "Get All Pets"
  304. allpets.TextColor3 = Color3.new(0, 0, 0)
  305. allpets.TextSize = 14
  306. allpets.MouseButton1Down:connect(function()
  307. print("I have gave you these pets:")
  308. for i,v in pairs(game.ReplicatedStorage.Pets:GetChildren()) do
  309. game.ReplicatedStorage.Events.GivePet:FireServer(v, "newkeycode")
  310. end
  311. end)
  312.  
  313.  
  314. opthing.Name = "opthing"
  315. opthing.Parent = movebar
  316. opthing.BackgroundColor3 = Color3.new(1, 1, 1)
  317. opthing.Position = UDim2.new(0.0804597661, 0, 10.6333332, 0)
  318. opthing.Size = UDim2.new(0, 218, 0, 25)
  319. opthing.Font = Enum.Font.SourceSans
  320. opthing.Text = "Auto Rebirth / Tool Equip / Kill All Blobs"
  321. opthing.TextColor3 = Color3.new(0, 0, 0)
  322. opthing.TextSize = 14
  323. opthing.MouseButton1Down:connect(function()
  324. while true do
  325.  
  326. local Blobs = game.workspace.GameStuff.Blobs
  327. local Damage = math.huge
  328. local lol = "newkeycode"
  329. local Event = game:GetService("ReplicatedStorage").Events.DealDamage
  330. for i,v in pairs(Blobs:GetDescendants()) do
  331. if v:IsA("Folder") and v.Name == "BlobProperties" then
  332. Event:FireServer(v, Damage, lol)
  333. end
  334. end
  335.  
  336. for i,v in pairs(game.ReplicatedStorage.BagShop:GetChildren()) do
  337. game.ReplicatedStorage.Events.GiveBag:FireServer(v, "newkeycode")
  338. print("Added bag", v)
  339. end
  340.  
  341. for i,v in pairs(game.ReplicatedStorage.Shop:GetChildren()) do
  342. game.ReplicatedStorage.Events.GiveItem:FireServer(v, "newkeycode")
  343. print("Added Tool", v)
  344. end
  345.  
  346. game.ReplicatedStorage.Events.ChangeMoney:FireServer(math.huge,"newkeycode")
  347. wait(.3)
  348. game.ReplicatedStorage.Events.RebirthPlayer:FireServer(1000000, "newkeycode")
  349. wait()
  350. end
  351. end)
Add Comment
Please, Sign In to add comment