Advertisement
Holiwarm

Blob simulator 2 [OP GUI]

Sep 27th, 2019
774
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 14.94 KB | None | 0 0
  1. --[[
  2.     Made by Holiwarm
  3.     <3
  4. ]]
  5.  
  6. -- Farewell Infortality.
  7. -- Version: 2.82
  8. -- Instances:
  9. local PRB = Instance.new("ScreenGui")
  10. local PRB_2 = Instance.new("Frame")
  11. local TPAREA = Instance.new("TextButton")
  12. local PB1 = Instance.new("TextLabel")
  13. local PB2 = Instance.new("TextLabel")
  14. local AUTOEQUIP = Instance.new("TextButton")
  15. local CREDITS = Instance.new("TextButton")
  16. local AUTOFARM = Instance.new("TextButton")
  17. local AF = Instance.new("TextLabel")
  18. local AREANUMBER = Instance.new("TextBox")
  19. local EGGNUMBER = Instance.new("TextBox")
  20. local ABE = Instance.new("TextButton")
  21. local MAHEALTH = Instance.new("TextBox")
  22. local MHEALTH = Instance.new("TextBox")
  23. local OC = Instance.new("Frame")
  24. local OPEN = Instance.new("TextButton")
  25. local CLOSE = Instance.new("TextButton")
  26. local CREDITSF = Instance.new("Frame")
  27. local PB3 = Instance.new("TextLabel")
  28. local PB4 = Instance.new("TextLabel")
  29. local X = Instance.new("TextButton")
  30. local PB3_2 = Instance.new("TextLabel")
  31. local CRED = Instance.new("TextLabel")
  32. local CRED_2 = Instance.new("TextLabel")
  33. local CRED_3 = Instance.new("TextLabel")
  34. --Properties:
  35. PRB.Name = "PRB"
  36. PRB.Parent = game.CoreGui
  37.  
  38. PRB_2.Name = "PRB"
  39. PRB_2.Parent = PRB
  40. PRB_2.BackgroundColor3 = Color3.new(1, 1, 1)
  41. PRB_2.BorderSizePixel = 3
  42. PRB_2.Position = UDim2.new(0.707509875, 0, 0.120393127, 0)
  43. PRB_2.Size = UDim2.new(0, 320, 0, 389)
  44. PRB_2.Visible = false
  45.  
  46. TPAREA.Name = "TPAREA"
  47. TPAREA.Parent = PRB_2
  48. TPAREA.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  49. TPAREA.Position = UDim2.new(0.0527420044, 0, 0.222446308, 0)
  50. TPAREA.Size = UDim2.new(0, 284, 0, 50)
  51. TPAREA.Font = Enum.Font.Highway
  52. TPAREA.Text = "TP AREA"
  53. TPAREA.TextColor3 = Color3.new(0, 0, 0)
  54. TPAREA.TextSize = 14
  55. TPAREA.MouseButton1Click:Connect(function()
  56.     -- Farewell Infortality.
  57. -- Version: 2.82
  58. -- Instances:
  59. local ScreenGui = Instance.new("ScreenGui")
  60. local Back = Instance.new("Frame")
  61. local Areas = Instance.new("ScrollingFrame")
  62. local UIGridLayout = Instance.new("UIGridLayout")
  63. local Template = Instance.new("TextButton")
  64. --Properties:
  65. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  66. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  67.  
  68. Back.Name = "Back"
  69. Back.Parent = ScreenGui
  70. Back.BackgroundColor3 = Color3.new(0.670588, 0.501961, 0.988235)
  71. Back.BorderSizePixel = 0
  72. Back.Position = UDim2.new(0.409007907, 0, 0.555722892, 0)
  73. Back.Size = UDim2.new(0.181984171, 0, 0.341867477, 0)
  74.  
  75. Areas.Name = "Areas"
  76. Areas.Parent = Back
  77. Areas.BackgroundColor3 = Color3.new(0.670588, 0.501961, 0.988235)
  78. Areas.BorderSizePixel = 0
  79. Areas.Size = UDim2.new(1, 0, 1, 0)
  80. Areas.ScrollBarThickness = 5
  81. Areas.VerticalScrollBarInset = Enum.ScrollBarInset.ScrollBar
  82.  
  83. UIGridLayout.Parent = Areas
  84. UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 0)
  85. UIGridLayout.CellSize = UDim2.new(0, 294, 0, 50)
  86.  
  87. Template.Name = "Template"
  88. Template.Parent = UIGridLayout
  89. Template.BackgroundColor3 = Color3.new(1, 1, 1)
  90. Template.BackgroundTransparency = 1
  91. Template.BorderSizePixel = 0
  92. Template.Size = UDim2.new(0.983277619, 0, 0.105485231, 0)
  93. Template.Font = Enum.Font.Highway
  94. Template.Text = "Area Name"
  95. Template.TextColor3 = Color3.new(0, 0, 0)
  96. Template.TextScaled = true
  97. Template.TextSize = 14
  98. Template.TextWrapped = true
  99. -- Scripts:
  100. for _,v in pairs(game.Workspace.GameComponents.Teleports:GetChildren()) do
  101.     if Areas:FindFirstChild(v.Name) == nil then
  102.         local copy = Template:Clone()
  103.         copy.Parent = Areas
  104.         copy.Name = v.Name
  105.         copy.Text = v.Name
  106.         copy.MouseButton1Click:Connect(function()
  107.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.GameComponents.Teleports[copy.Name].CFrame
  108.         end)
  109.     end
  110. end
  111. --  102
  112. game:GetService("UserInputService").InputBegan:Connect(function(key)
  113.     if key.KeyCode == Enum.KeyCode.F then
  114.         if Back.Visible == false then
  115.             Back.Visible = true
  116.         elseif Back.Visible == true then
  117.             Back.Visible = false
  118.         end
  119.     end
  120.    
  121. end)
  122. Back.Active = true
  123. Back.Draggable = true
  124. end)
  125.  
  126. PB1.Name = "PB1"
  127. PB1.Parent = PRB_2
  128. PB1.BackgroundColor3 = Color3.new(1, 1, 1)
  129. PB1.BorderSizePixel = 3
  130. PB1.ClipsDescendants = true
  131. PB1.Position = UDim2.new(0, 0, -0.0912762284, 0)
  132. PB1.Size = UDim2.new(0, 320, 0, 50)
  133. PB1.Font = Enum.Font.Highway
  134. PB1.Text = "PROJECT BLOB"
  135. PB1.TextColor3 = Color3.new(0, 0, 0)
  136. PB1.TextSize = 14
  137.  
  138. PB2.Name = "PB2"
  139. PB2.Parent = PRB_2
  140. PB2.BackgroundColor3 = Color3.new(1, 1, 1)
  141. PB2.BorderSizePixel = 3
  142. PB2.ClipsDescendants = true
  143. PB2.Position = UDim2.new(0, 0, 0.998406529, 0)
  144. PB2.Size = UDim2.new(0, 320, 0, 50)
  145. PB2.Font = Enum.Font.Highway
  146. PB2.Text = "PROJECT BLOB"
  147. PB2.TextColor3 = Color3.new(0, 0, 0)
  148. PB2.TextSize = 14
  149.  
  150. AUTOEQUIP.Name = "AUTOEQUIP"
  151. AUTOEQUIP.Parent = PRB_2
  152. AUTOEQUIP.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  153. AUTOEQUIP.Position = UDim2.new(0.0527421236, 0, 0.0660902411, 0)
  154. AUTOEQUIP.Size = UDim2.new(0, 285, 0, 50)
  155. AUTOEQUIP.Font = Enum.Font.Highway
  156. AUTOEQUIP.Text = "AUTO EQUIP THE BEST PET IN GAME"
  157. AUTOEQUIP.TextColor3 = Color3.new(0, 0, 0)
  158. AUTOEQUIP.TextSize = 14
  159. AUTOEQUIP.MouseButton1Click:Connect(function()
  160.     local blob = "Radioactive Blobimus Infernus"
  161. game.ReplicatedStorage.Events.EquipBlob:FireServer(game.ReplicatedStorage.Blobs[blob])
  162. end)
  163.  
  164. CREDITS.Name = "CREDITS"
  165. CREDITS.Parent = PRB_2
  166. CREDITS.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  167. CREDITS.Position = UDim2.new(0.052742146, 0, 0.533110559, 0)
  168. CREDITS.Size = UDim2.new(0, 285, 0, 34)
  169. CREDITS.Font = Enum.Font.Highway
  170. CREDITS.Text = "CREDITS"
  171. CREDITS.TextColor3 = Color3.new(0, 0, 0)
  172. CREDITS.TextSize = 14
  173. CREDITS.MouseButton1Click:Connect(function()
  174.     CREDITSF.Visible = true
  175. end)
  176.  
  177. AUTOFARM.Name = "AUTOFARM"
  178. AUTOFARM.Parent = PRB_2
  179. AUTOFARM.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  180. AUTOFARM.Position = UDim2.new(0.0500000007, 0, 0.875844121, 0)
  181. AUTOFARM.Size = UDim2.new(0, 286, 0, 35)
  182. AUTOFARM.Font = Enum.Font.Highway
  183. AUTOFARM.Text = "AUTO FARM"
  184. AUTOFARM.TextColor3 = Color3.new(0, 0, 0)
  185. AUTOFARM.TextSize = 14
  186.  
  187. AF.Name = "AF"
  188. AF.Parent = PRB_2
  189. AF.BackgroundColor3 = Color3.new(1, 1, 1)
  190. AF.BorderSizePixel = 3
  191. AF.ClipsDescendants = true
  192. AF.Position = UDim2.new(-4.77302819e-08, 0, 0.644119561, 0)
  193. AF.Size = UDim2.new(0, 320, 0, 34)
  194. AF.Font = Enum.Font.Highway
  195. AF.Text = "AUTO FARM"
  196. AF.TextColor3 = Color3.new(0, 0, 0)
  197. AF.TextSize = 14
  198.  
  199. EGGNUMBER.Name = "EGGNUMBER"
  200. EGGNUMBER.Parent = PRB_2
  201. EGGNUMBER.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  202. EGGNUMBER.Position = UDim2.new(0.0500000007, 0, 0.379208058, 0)
  203. EGGNUMBER.Size = UDim2.new(0, 134, 0, 50)
  204. EGGNUMBER.Font = Enum.Font.Highway
  205. EGGNUMBER.Text = "EGG NUMBER"
  206. EGGNUMBER.TextColor3 = Color3.new(0, 0, 0)
  207. EGGNUMBER.TextSize = 14
  208.  
  209. ABE.Name = "ABE"
  210. ABE.Parent = PRB_2
  211. ABE.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  212. ABE.Position = UDim2.new(0.496492088, 0, 0.377438039, 0)
  213. ABE.Size = UDim2.new(0, 142, 0, 50)
  214. ABE.Font = Enum.Font.Highway
  215. ABE.Text = "AUTO BUY EGG"
  216. ABE.TextColor3 = Color3.new(0, 0, 0)
  217. ABE.TextSize = 14
  218. ABE.MouseButton1Click:Connect(function()
  219.     local on = false
  220. ABE.MouseButton1Click:Connect(function()
  221.     if on == false then
  222.         on = true
  223.         ABE.Text = "STOP"
  224.     elseif on == true then
  225.         on = false
  226.         ABE.Text = "AUTO BUY EGG"
  227.     end
  228.     repeat
  229.         wait()
  230.          
  231.         local A_1 = game:GetService("Workspace").GameComponents.EggShop["Tier "..EGGNUMBER.Text]
  232.         local Event = game:GetService("ReplicatedStorage").Events.BuyEgg
  233.         Event:FireServer(A_1)
  234.  
  235.     until on == false
  236. end)
  237. end)
  238.  
  239. MAHEALTH.Name = "MAHEALTH"
  240. MAHEALTH.Parent = PRB_2
  241. MAHEALTH.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  242. MAHEALTH.Position = UDim2.new(0.521875024, 0, 0.756268263, 0)
  243. MAHEALTH.Size = UDim2.new(0, 134, 0, 39)
  244. MAHEALTH.Font = Enum.Font.Highway
  245. MAHEALTH.Text = "MAX HEALTH"
  246. MAHEALTH.TextColor3 = Color3.new(0, 0, 0)
  247. MAHEALTH.TextSize = 14
  248.  
  249. MHEALTH.Name = "MHEALTH"
  250. MHEALTH.Parent = PRB_2
  251. MHEALTH.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  252. MHEALTH.Position = UDim2.new(0.052742146, 0, 0.756268263, 0)
  253. MHEALTH.Size = UDim2.new(0, 141, 0, 39)
  254. MHEALTH.Font = Enum.Font.Highway
  255. MHEALTH.Text = "MIN HEALTH"
  256. MHEALTH.TextColor3 = Color3.new(0, 0, 0)
  257. MHEALTH.TextSize = 14
  258.  
  259. OC.Name = "OC"
  260. OC.Parent = PRB
  261. OC.BackgroundColor3 = Color3.new(1, 1, 1)
  262. OC.Position = UDim2.new(0.0173912924, 0, 0.427518398, 0)
  263. OC.Size = UDim2.new(0, 22, 0, 25)
  264.  
  265. OPEN.Name = "OPEN"
  266. OPEN.Parent = OC
  267. OPEN.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  268. OPEN.BorderSizePixel = 3
  269. OPEN.Position = UDim2.new(-0.630039513, 0, -0.298624128, 0)
  270. OPEN.Size = UDim2.new(0, 65, 0, 39)
  271. OPEN.Font = Enum.Font.Highway
  272. OPEN.Text = "OPEN"
  273. OPEN.TextColor3 = Color3.new(0, 0, 0)
  274. OPEN.TextSize = 20
  275. OPEN.MouseButton1Click:Connect(function()
  276.     OPEN.Visible = false
  277.     CLOSE.Visible = true
  278.     PRB_2.Visible = true
  279.     function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  280. local counter1 = 1
  281. while wait(0.1) do
  282.     PRB_2.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  283.     PB1.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  284.     PB2.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  285.     AF.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  286.     CREDITSF.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  287.     PB3.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  288.     PB3_2.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  289.     PB4.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  290.     counter1 = counter1 + 0.01
  291.  
  292.  
  293. end
  294. end)
  295.  
  296. CLOSE.Name = "CLOSE"
  297. CLOSE.Parent = OC
  298. CLOSE.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  299. CLOSE.BorderSizePixel = 3
  300. CLOSE.Position = UDim2.new(-0.630039513, 0, -0.298624128, 0)
  301. CLOSE.Size = UDim2.new(0, 65, 0, 39)
  302. CLOSE.Visible = false
  303. CLOSE.Font = Enum.Font.Highway
  304. CLOSE.Text = "CLOSE"
  305. CLOSE.TextColor3 = Color3.new(0, 0, 0)
  306. CLOSE.TextSize = 20
  307. CLOSE.MouseButton1Click:Connect(function()
  308.     OPEN.Visible = true
  309.     CLOSE.Visible = false
  310.     PRB_2.Visible = false
  311. end)
  312.  
  313. CREDITSF.Name = "CREDITSF"
  314. CREDITSF.Parent = PRB
  315. CREDITSF.BackgroundColor3 = Color3.new(1, 1, 1)
  316. CREDITSF.BorderSizePixel = 3
  317. CREDITSF.Position = UDim2.new(0.474308312, 0, 0.165847659, 0)
  318. CREDITSF.Size = UDim2.new(0, 234, 0, 288)
  319. CREDITSF.Visible = false
  320.  
  321. PB3.Name = "PB3"
  322. PB3.Parent = CREDITSF
  323. PB3.BackgroundColor3 = Color3.new(1, 1, 1)
  324. PB3.BorderSizePixel = 3
  325. PB3.ClipsDescendants = true
  326. PB3.Position = UDim2.new(0, 0, 0.998406589, 0)
  327. PB3.Size = UDim2.new(0, 234, 0, 50)
  328. PB3.Font = Enum.Font.SourceSans
  329. PB3.Text = "PROJECT BLOB"
  330. PB3.TextColor3 = Color3.new(0, 0, 0)
  331. PB3.TextSize = 14
  332.  
  333. PB4.Name = "PB4"
  334. PB4.Parent = CREDITSF
  335. PB4.BackgroundColor3 = Color3.new(1, 1, 1)
  336. PB4.BorderSizePixel = 3
  337. PB4.ClipsDescendants = true
  338. PB4.Position = UDim2.new(0, 0, -0.14404358, 0)
  339. PB4.Size = UDim2.new(0, 234, 0, 50)
  340. PB4.Font = Enum.Font.Highway
  341. PB4.Text = "PROJECT BLOB - CREDITS"
  342. PB4.TextColor3 = Color3.new(0, 0, 0)
  343. PB4.TextSize = 14
  344.  
  345. X.Name = "X"
  346. X.Parent = CREDITSF
  347. X.BackgroundColor3 = Color3.new(1, 1, 1)
  348. X.BorderSizePixel = 0
  349. X.Position = UDim2.new(0.880342007, 0, -0.121527821, 0)
  350. X.Size = UDim2.new(0, 22, 0, 23)
  351. X.Font = Enum.Font.SourceSans
  352. X.Text = "X"
  353. X.TextColor3 = Color3.new(0, 0, 0)
  354. X.TextSize = 14
  355. X.MouseButton1Click:Connect(function()
  356.     CREDITSF.Visible = false
  357. end)
  358.  
  359. PB3_2.Name = "PB3"
  360. PB3_2.Parent = CREDITSF
  361. PB3_2.BackgroundColor3 = Color3.new(1, 1, 1)
  362. PB3_2.BorderSizePixel = 3
  363. PB3_2.ClipsDescendants = true
  364. PB3_2.Position = UDim2.new(0, 0, 0.998406589, 0)
  365. PB3_2.Size = UDim2.new(0, 234, 0, 50)
  366. PB3_2.Font = Enum.Font.Highway
  367. PB3_2.Text = "PROJECT BLOB - CREDITS"
  368. PB3_2.TextColor3 = Color3.new(0, 0, 0)
  369. PB3_2.TextSize = 14
  370.  
  371. CRED.Name = "CRED"
  372. CRED.Parent = CREDITSF
  373. CRED.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  374. CRED.BorderSizePixel = 3
  375. CRED.ClipsDescendants = true
  376. CRED.Position = UDim2.new(0, 0, 0.0852121711, 0)
  377. CRED.Size = UDim2.new(0, 234, 0, 50)
  378. CRED.Font = Enum.Font.Highway
  379. CRED.Text = "Holiwarm"
  380. CRED.TextColor3 = Color3.new(0, 0, 0)
  381. CRED.TextSize = 14
  382.  
  383. CRED_2.Name = "CRED"
  384. CRED_2.Parent = CREDITSF
  385. CRED_2.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  386. CRED_2.BorderSizePixel = 3
  387. CRED_2.ClipsDescendants = true
  388. CRED_2.Position = UDim2.new(0, 0, 0.765767753, 0)
  389. CRED_2.Size = UDim2.new(0, 234, 0, 50)
  390. CRED_2.Font = Enum.Font.Highway
  391. CRED_2.Text = "Holiwarm"
  392. CRED_2.TextColor3 = Color3.new(0, 0, 0)
  393. CRED_2.TextSize = 14
  394.  
  395. CRED_3.Name = "CRED"
  396. CRED_3.Parent = CREDITSF
  397. CRED_3.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  398. CRED_3.BorderSizePixel = 3
  399. CRED_3.ClipsDescendants = true
  400. CRED_3.Position = UDim2.new(0, 0, 0.415073276, 0)
  401. CRED_3.Size = UDim2.new(0, 234, 0, 50)
  402. CRED_3.Font = Enum.Font.Highway
  403. CRED_3.Text = "Holiwarm"
  404. CRED_3.TextColor3 = Color3.new(0, 0, 0)
  405. CRED_3.TextSize = 14
  406. -- Scripts:
  407. local on = false
  408. AUTOFARM.MouseButton1Click:Connect(function()
  409.     if on == false then
  410.         on = true
  411.         AUTOFARM.Text = "STOP"
  412.        
  413.     elseif on == true then
  414.         on = false
  415.         AUTOFARM.Text = "AUTO_FARM"
  416.     end
  417.  
  418.     repeat
  419.         wait()
  420.         local min = tonumber(MHEALTH.Text)
  421.         local max = tonumber(MAHEALTH.Text)
  422.             for _,v in pairs(game.Workspace:GetChildren()) do
  423.             for _,c in pairs(v:GetChildren()) do
  424.                 if c.Name ~= "CoinRegion" then
  425.                     for _,b in pairs(c:GetChildren()) do
  426.                         if b:FindFirstChild("Stats") ~= nil then
  427.                             if b.Stats.Health.Value > min -1  and b.Stats.Health.Value < max +1 then
  428.                                 if AUTOFARM.Text == "STOP" then
  429.                                 wait(1)
  430.                                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = b.CFrame    
  431.                                 local A_1 = b
  432.                                 local A_2 = "click"
  433.                                 local Event = game:GetService("ReplicatedStorage").BlobModule.BlobClick
  434.                                 Event:FireServer(A_1, A_2)
  435.                                 wait(1)
  436.                                 if b:FindFirstChild("Damagers") ~= nil then
  437.                                     if b.Damagers:FindFirstChild(game.Players.LocalPlayer.Name) ~= nil then
  438.                                         if b:WaitForChild("Damagers"):WaitForChild(game.Players.LocalPlayer.Name).Value >= b.Stats.Health.Value then
  439.                                             warn("done")
  440.                                            
  441.                                         end
  442.                                     end
  443.                                 end
  444.                             end
  445.                         end
  446.                     end
  447.                 end
  448.             end
  449.             end
  450.             end
  451.     until on == false
  452. end)
  453. PRB_2.Active = true
  454. PRB_2.Draggable = true
  455. CREDITSF.Active = true
  456. CREDITSF.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement