TheRealJMzYT

URMOMGAY

Feb 16th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.04 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 Blobimus Infernus"
  156. game.ReplicatedStorage.Events.EquipBlob:FireServer(game.ReplicatedStorage.Blobs[blob])
  157. end)
  158.  
  159. CREDITS.Name = "CREDITS"
  160. CREDITS.Parent = PRB_2
  161. CREDITS.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  162. CREDITS.Position = UDim2.new(0.052742146, 0, 0.533110559, 0)
  163. CREDITS.Size = UDim2.new(0, 285, 0, 34)
  164. CREDITS.Font = Enum.Font.Highway
  165. CREDITS.Text = "CREDITS"
  166. CREDITS.TextColor3 = Color3.new(0, 0, 0)
  167. CREDITS.TextSize = 14
  168. CREDITS.MouseButton1Click:Connect(function()
  169. CREDITSF.Visible = true
  170. end)
  171.  
  172. AUTOFARM.Name = "AUTOFARM"
  173. AUTOFARM.Parent = PRB_2
  174. AUTOFARM.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  175. AUTOFARM.Position = UDim2.new(0.0500000007, 0, 0.875844121, 0)
  176. AUTOFARM.Size = UDim2.new(0, 286, 0, 35)
  177. AUTOFARM.Font = Enum.Font.Highway
  178. AUTOFARM.Text = "AUTO FARM"
  179. AUTOFARM.TextColor3 = Color3.new(0, 0, 0)
  180. AUTOFARM.TextSize = 14
  181.  
  182. AF.Name = "AF"
  183. AF.Parent = PRB_2
  184. AF.BackgroundColor3 = Color3.new(1, 1, 1)
  185. AF.BorderSizePixel = 3
  186. AF.ClipsDescendants = true
  187. AF.Position = UDim2.new(-4.77302819e-08, 0, 0.644119561, 0)
  188. AF.Size = UDim2.new(0, 320, 0, 34)
  189. AF.Font = Enum.Font.Highway
  190. AF.Text = "AUTO FARM"
  191. AF.TextColor3 = Color3.new(0, 0, 0)
  192. AF.TextSize = 14
  193.  
  194. EGGNUMBER.Name = "EGGNUMBER"
  195. EGGNUMBER.Parent = PRB_2
  196. EGGNUMBER.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  197. EGGNUMBER.Position = UDim2.new(0.0500000007, 0, 0.379208058, 0)
  198. EGGNUMBER.Size = UDim2.new(0, 134, 0, 50)
  199. EGGNUMBER.Font = Enum.Font.Highway
  200. EGGNUMBER.Text = "EGG NUMBER"
  201. EGGNUMBER.TextColor3 = Color3.new(0, 0, 0)
  202. EGGNUMBER.TextSize = 14
  203.  
  204. ABE.Name = "ABE"
  205. ABE.Parent = PRB_2
  206. ABE.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  207. ABE.Position = UDim2.new(0.496492088, 0, 0.377438039, 0)
  208. ABE.Size = UDim2.new(0, 142, 0, 50)
  209. ABE.Font = Enum.Font.Highway
  210. ABE.Text = "AUTO BUY EGG"
  211. ABE.TextColor3 = Color3.new(0, 0, 0)
  212. ABE.TextSize = 14
  213. ABE.MouseButton1Click:Connect(function()
  214. local on = false
  215. ABE.MouseButton1Click:Connect(function()
  216. if on == false then
  217. on = true
  218. ABE.Text = "STOP"
  219. elseif on == true then
  220. on = false
  221. ABE.Text = "AUTO BUY EGG"
  222. end
  223. repeat
  224. wait()
  225.  
  226. local A_1 = game:GetService("Workspace").GameComponents.EggShop["Tier "..EGGNUMBER.Text]
  227. local Event = game:GetService("ReplicatedStorage").Events.BuyEgg
  228. Event:FireServer(A_1)
  229.  
  230. until on == false
  231. end)
  232. end)
  233.  
  234. MAHEALTH.Name = "MAHEALTH"
  235. MAHEALTH.Parent = PRB_2
  236. MAHEALTH.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  237. MAHEALTH.Position = UDim2.new(0.521875024, 0, 0.756268263, 0)
  238. MAHEALTH.Size = UDim2.new(0, 134, 0, 39)
  239. MAHEALTH.Font = Enum.Font.Highway
  240. MAHEALTH.Text = "MAX HEALTH"
  241. MAHEALTH.TextColor3 = Color3.new(0, 0, 0)
  242. MAHEALTH.TextSize = 14
  243.  
  244. MHEALTH.Name = "MHEALTH"
  245. MHEALTH.Parent = PRB_2
  246. MHEALTH.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  247. MHEALTH.Position = UDim2.new(0.052742146, 0, 0.756268263, 0)
  248. MHEALTH.Size = UDim2.new(0, 141, 0, 39)
  249. MHEALTH.Font = Enum.Font.Highway
  250. MHEALTH.Text = "MIN HEALTH"
  251. MHEALTH.TextColor3 = Color3.new(0, 0, 0)
  252. MHEALTH.TextSize = 14
  253.  
  254. OC.Name = "OC"
  255. OC.Parent = PRB
  256. OC.BackgroundColor3 = Color3.new(1, 1, 1)
  257. OC.Position = UDim2.new(0.0173912924, 0, 0.427518398, 0)
  258. OC.Size = UDim2.new(0, 22, 0, 25)
  259.  
  260. OPEN.Name = "OPEN"
  261. OPEN.Parent = OC
  262. OPEN.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  263. OPEN.BorderSizePixel = 3
  264. OPEN.Position = UDim2.new(-0.630039513, 0, -0.298624128, 0)
  265. OPEN.Size = UDim2.new(0, 65, 0, 39)
  266. OPEN.Font = Enum.Font.Highway
  267. OPEN.Text = "OPEN"
  268. OPEN.TextColor3 = Color3.new(0, 0, 0)
  269. OPEN.TextSize = 20
  270. OPEN.MouseButton1Click:Connect(function()
  271. OPEN.Visible = false
  272. CLOSE.Visible = true
  273. PRB_2.Visible = true
  274. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  275. local counter1 = 1
  276. while wait(0.1) do
  277. PRB_2.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  278. PB1.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  279. PB2.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  280. AF.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  281. CREDITSF.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  282. PB3.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  283. PB3_2.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  284. PB4.BackgroundColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  285. counter1 = counter1 + 0.01
  286.  
  287.  
  288. end
  289. end)
  290.  
  291. CLOSE.Name = "CLOSE"
  292. CLOSE.Parent = OC
  293. CLOSE.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  294. CLOSE.BorderSizePixel = 3
  295. CLOSE.Position = UDim2.new(-0.630039513, 0, -0.298624128, 0)
  296. CLOSE.Size = UDim2.new(0, 65, 0, 39)
  297. CLOSE.Visible = false
  298. CLOSE.Font = Enum.Font.Highway
  299. CLOSE.Text = "CLOSE"
  300. CLOSE.TextColor3 = Color3.new(0, 0, 0)
  301. CLOSE.TextSize = 20
  302. CLOSE.MouseButton1Click:Connect(function()
  303. OPEN.Visible = true
  304. CLOSE.Visible = false
  305. PRB_2.Visible = false
  306. end)
  307.  
  308. CREDITSF.Name = "CREDITSF"
  309. CREDITSF.Parent = PRB
  310. CREDITSF.BackgroundColor3 = Color3.new(1, 1, 1)
  311. CREDITSF.BorderSizePixel = 3
  312. CREDITSF.Position = UDim2.new(0.474308312, 0, 0.165847659, 0)
  313. CREDITSF.Size = UDim2.new(0, 234, 0, 288)
  314. CREDITSF.Visible = false
  315.  
  316. PB3.Name = "PB3"
  317. PB3.Parent = CREDITSF
  318. PB3.BackgroundColor3 = Color3.new(1, 1, 1)
  319. PB3.BorderSizePixel = 3
  320. PB3.ClipsDescendants = true
  321. PB3.Position = UDim2.new(0, 0, 0.998406589, 0)
  322. PB3.Size = UDim2.new(0, 234, 0, 50)
  323. PB3.Font = Enum.Font.SourceSans
  324. PB3.Text = "PROJECT BLOB"
  325. PB3.TextColor3 = Color3.new(0, 0, 0)
  326. PB3.TextSize = 14
  327.  
  328. PB4.Name = "PB4"
  329. PB4.Parent = CREDITSF
  330. PB4.BackgroundColor3 = Color3.new(1, 1, 1)
  331. PB4.BorderSizePixel = 3
  332. PB4.ClipsDescendants = true
  333. PB4.Position = UDim2.new(0, 0, -0.14404358, 0)
  334. PB4.Size = UDim2.new(0, 234, 0, 50)
  335. PB4.Font = Enum.Font.Highway
  336. PB4.Text = "PROJECT BLOB - CREDITS"
  337. PB4.TextColor3 = Color3.new(0, 0, 0)
  338. PB4.TextSize = 14
  339.  
  340. X.Name = "X"
  341. X.Parent = CREDITSF
  342. X.BackgroundColor3 = Color3.new(1, 1, 1)
  343. X.BorderSizePixel = 0
  344. X.Position = UDim2.new(0.880342007, 0, -0.121527821, 0)
  345. X.Size = UDim2.new(0, 22, 0, 23)
  346. X.Font = Enum.Font.SourceSans
  347. X.Text = "X"
  348. X.TextColor3 = Color3.new(0, 0, 0)
  349. X.TextSize = 14
  350. X.MouseButton1Click:Connect(function()
  351. CREDITSF.Visible = false
  352. end)
  353.  
  354. PB3_2.Name = "PB3"
  355. PB3_2.Parent = CREDITSF
  356. PB3_2.BackgroundColor3 = Color3.new(1, 1, 1)
  357. PB3_2.BorderSizePixel = 3
  358. PB3_2.ClipsDescendants = true
  359. PB3_2.Position = UDim2.new(0, 0, 0.998406589, 0)
  360. PB3_2.Size = UDim2.new(0, 234, 0, 50)
  361. PB3_2.Font = Enum.Font.Highway
  362. PB3_2.Text = "PROJECT BLOB - CREDITS"
  363. PB3_2.TextColor3 = Color3.new(0, 0, 0)
  364. PB3_2.TextSize = 14
  365.  
  366. CRED.Name = "CRED"
  367. CRED.Parent = CREDITSF
  368. CRED.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  369. CRED.BorderSizePixel = 3
  370. CRED.ClipsDescendants = true
  371. CRED.Position = UDim2.new(0, 0, 0.0852121711, 0)
  372. CRED.Size = UDim2.new(0, 234, 0, 50)
  373. CRED.Font = Enum.Font.Highway
  374. CRED.Text = "NOT A TRAP#9698"
  375. CRED.TextColor3 = Color3.new(0, 0, 0)
  376. CRED.TextSize = 14
  377.  
  378. CRED_2.Name = "CRED"
  379. CRED_2.Parent = CREDITSF
  380. CRED_2.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  381. CRED_2.BorderSizePixel = 3
  382. CRED_2.ClipsDescendants = true
  383. CRED_2.Position = UDim2.new(0, 0, 0.765767753, 0)
  384. CRED_2.Size = UDim2.new(0, 234, 0, 50)
  385. CRED_2.Font = Enum.Font.Highway
  386. CRED_2.Text = "ReallySecure#4953"
  387. CRED_2.TextColor3 = Color3.new(0, 0, 0)
  388. CRED_2.TextSize = 14
  389.  
  390. CRED_3.Name = "CRED"
  391. CRED_3.Parent = CREDITSF
  392. CRED_3.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  393. CRED_3.BorderSizePixel = 3
  394. CRED_3.ClipsDescendants = true
  395. CRED_3.Position = UDim2.new(0, 0, 0.415073276, 0)
  396. CRED_3.Size = UDim2.new(0, 234, 0, 50)
  397. CRED_3.Font = Enum.Font.Highway
  398. CRED_3.Text = "NAME4YOU#1192"
  399. CRED_3.TextColor3 = Color3.new(0, 0, 0)
  400. CRED_3.TextSize = 14
  401. -- Scripts:
  402. local on = false
  403. AUTOFARM.MouseButton1Click:Connect(function()
  404. if on == false then
  405. on = true
  406. AUTOFARM.Text = "STOP"
  407.  
  408. elseif on == true then
  409. on = false
  410. AUTOFARM.Text = "AUTO_FARM"
  411. end
  412.  
  413. repeat
  414. wait()
  415. local min = tonumber(MHEALTH.Text)
  416. local max = tonumber(MAHEALTH.Text)
  417. for _,v in pairs(game.Workspace:GetChildren()) do
  418. for _,c in pairs(v:GetChildren()) do
  419. if c.Name ~= "CoinRegion" then
  420. for _,b in pairs(c:GetChildren()) do
  421. if b:FindFirstChild("Stats") ~= nil then
  422. if b.Stats.Health.Value > min -1 and b.Stats.Health.Value < max +1 then
  423. if AUTOFARM.Text == "STOP" then
  424. wait(1)
  425. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = b.CFrame
  426. local A_1 = b
  427. local A_2 = "click"
  428. local Event = game:GetService("ReplicatedStorage").BlobModule.BlobClick
  429. Event:FireServer(A_1, A_2)
  430. wait(1)
  431. if b:FindFirstChild("Damagers") ~= nil then
  432. if b.Damagers:FindFirstChild(game.Players.LocalPlayer.Name) ~= nil then
  433. if b:WaitForChild("Damagers"):WaitForChild(game.Players.LocalPlayer.Name).Value >= b.Stats.Health.Value then
  434. warn("done")
  435.  
  436. end
  437. end
  438. end
  439. end
  440. end
  441. end
  442. end
  443. end
  444. end
  445. end
  446. until on == false
  447. end)
  448. PRB_2.Active = true
  449. PRB_2.Draggable = true
  450. CREDITSF.Active = true
  451. CREDITSF.Draggable = true
Add Comment
Please, Sign In to add comment