PG_MCVN

blob simulator

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