Advertisement
nguyenminhnghia

OPGTguinewchu7aeditxong

Jan 23rd, 2019
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.36 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local MainFrame = Instance.new("ScrollingFrame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextLabel_2 = Instance.new("TextLabel")
  8. local TextLabel_3 = Instance.new("TextLabel")
  9. local autocb = Instance.new("TextButton")
  10. local autosw = Instance.new("TextButton")
  11. local autodf = Instance.new("TextButton")
  12. local autogun2 = Instance.new("TextButton")
  13. local startisland = Instance.new("TextButton")
  14. local fishman = Instance.new("TextButton")
  15. local gor = Instance.new("TextButton")
  16. local TextLabel_4 = Instance.new("TextLabel")
  17. local haki = Instance.new("TextButton")
  18. local black = Instance.new("TextButton")
  19. local dfseller = Instance.new("TextButton")
  20. local chest = Instance.new("TextButton")
  21. local dftp = Instance.new("TextButton")
  22. local x2 = Instance.new("TextButton")
  23. local off = Instance.new("TextButton")
  24. --Properties:
  25. ScreenGui.Parent = game.CoreGui
  26. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  27.  
  28. MainFrame.Name = "MainFrame"
  29. MainFrame.Parent = ScreenGui
  30. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  31. MainFrame.Position = UDim2.new(0.337805837, 0, 0.285012275, 0)
  32. MainFrame.Size = UDim2.new(0, 641, 0, 185)
  33. MainFrame.HorizontalScrollBarInset = Enum.ScrollBarInset.Always
  34. MainFrame.Active = true
  35. MainFrame.Draggable = true
  36.  
  37. TextLabel.Parent = MainFrame
  38. TextLabel.BackgroundColor3 = Color3.new(0, 1, 1)
  39. TextLabel.Position = UDim2.new(0.0249609947, 0, 0.00921375677, 0)
  40. TextLabel.Size = UDim2.new(0, 200, 0, 29)
  41. TextLabel.Font = Enum.Font.Fantasy
  42. TextLabel.Text = "Auto Farm"
  43. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  44. TextLabel.TextSize = 14
  45.  
  46. TextLabel_2.Parent = MainFrame
  47. TextLabel_2.BackgroundColor3 = Color3.new(0, 1, 1)
  48. TextLabel_2.Position = UDim2.new(0.376950443, 0, 0.009307459, 0)
  49. TextLabel_2.Size = UDim2.new(0, 200, 0, 29)
  50. TextLabel_2.Font = Enum.Font.Fantasy
  51. TextLabel_2.Text = "Teleport"
  52. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  53. TextLabel_2.TextSize = 14
  54.  
  55. TextLabel_3.Parent = MainFrame
  56. TextLabel_3.BackgroundColor3 = Color3.new(0, 1, 1)
  57. TextLabel_3.Position = UDim2.new(0.717044055, 0, 0.00882634521, 0)
  58. TextLabel_3.Size = UDim2.new(0, 156, 0, 29)
  59. TextLabel_3.Font = Enum.Font.Fantasy
  60. TextLabel_3.Text = "Other"
  61. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  62. TextLabel_3.TextSize = 14
  63.  
  64. autocb.Name = "autocb"
  65. autocb.Parent = MainFrame
  66. autocb.BackgroundColor3 = Color3.new(0.0823529, 0.780392, 0.0705882)
  67. autocb.Position = UDim2.new(0.0249610022, 0, 0.0351441354, 0)
  68. autocb.Size = UDim2.new(0, 200, 0, 37)
  69. autocb.Font = Enum.Font.SourceSans
  70. autocb.Text = "Auto Farm Combat"
  71. autocb.TextColor3 = Color3.new(0, 0, 0)
  72. autocb.TextSize = 14
  73. autocb.MouseButton1Down:Connect(function()
  74. _G.cb = true -- false to stop
  75. while _G.mon do
  76. wait(2)
  77. for i,v in pairs(game.Workspace:GetChildren()) do
  78. str = v.Name
  79. if string.match(str, "Marine Captain") then
  80. game.Workspace:WaitForChild(game.Players.LocalPlayer.Character.Name).HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  81. end
  82. end
  83. end
  84.  
  85.  
  86. end)
  87.  
  88. autosw.Name = "autosw"
  89. autosw.Parent = MainFrame
  90. autosw.BackgroundColor3 = Color3.new(0.0823529, 0.780392, 0.0705882)
  91. autosw.Position = UDim2.new(0.0249610022, 0, 0.0578714088, 0)
  92. autosw.Size = UDim2.new(0, 200, 0, 37)
  93. autosw.Font = Enum.Font.SourceSans
  94. autosw.Text = "Auto Farm Sword"
  95. autosw.TextColor3 = Color3.new(0, 0, 0)
  96. autosw.TextSize = 14
  97. autosw.MouseButton1Down:Connect(function()
  98. _G.mon = true -- false to stop
  99. while _G.mon do
  100. wait(0.5)
  101. local Sword = game.Players.LocalPlayer.Data.Sword.Value
  102. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  103. game.Players.LocalPlayer.Character:WaitForChild("Humanoid").Died:Connect(function()
  104. game.Workspace:WaitForChild(game.Players.LocalPlayer.Character.Name):WaitForChild("Humanoid"):UnequipTools()
  105. wait(6)
  106. game.Workspace:WaitForChild(game.Players.LocalPlayer.Character.Name):WaitForChild("Humanoid"):EquipTool(game.Players.LocalPlayer.Backpack:FindFirstChild(Sword))
  107. print("Equipped")
  108. end)
  109. end)
  110.  
  111. _G.mon = true -- false to stop
  112. while _G.mon do
  113. wait(2)
  114. for i,v in pairs(game.Workspace:GetChildren()) do
  115. str = v.Name
  116. if string.match(str, "Marine Captain") then
  117. game.Workspace:WaitForChild(game.Players.LocalPlayer.Character.Name).HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  118. end
  119. end
  120. end
  121. end
  122.  
  123.  
  124. end)
  125.  
  126. autodf.Name = "autodf"
  127. autodf.Parent = MainFrame
  128. autodf.BackgroundColor3 = Color3.new(0.0823529, 0.780392, 0.0705882)
  129. autodf.Position = UDim2.new(0.0249610022, 0, 0.0805986822, 0)
  130. autodf.Size = UDim2.new(0, 200, 0, 37)
  131. autodf.Font = Enum.Font.SourceSans
  132. autodf.Text = "Auto Farm Df"
  133. autodf.TextColor3 = Color3.new(0, 0, 0)
  134. autodf.TextSize = 14
  135. autodf.MouseButton1Down:connect(function()
  136. _G.dff = true -- false to stop
  137. while _G.mon do
  138. wait(1)
  139. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-233,43,5646))
  140. local NUMBER = 1,4
  141. for i,v in pairs(game.Workspace:GetChildren()) do
  142. str = v.Name
  143. if string.match(str, "Marine") then
  144. local A_1 = "\224\180\184\224\180\166\224\181\141\224\180\181\224\180\191\224\180\150\224\180\191\224\180\175\224\181\139\224\181\188\224\181\186"
  145. local A_2 = game.Players.LocalPlayer.Data.DevilFruit.Value.." Skill"..NUMBER
  146. local A_3 = v.Name
  147. local A_4 = Vector3.new(-0.792433202, -0.0187238604, -0.609671235)
  148. local Event = game:GetService("ReplicatedStorage").Remotes.DMG
  149. Event:FireServer(A_1, A_2, A_3, A_4)
  150. end
  151. end
  152. end
  153.  
  154.  
  155. end)
  156.  
  157. autogun2.Name = "autogun2"
  158. autogun2.Parent = MainFrame
  159. autogun2.BackgroundColor3 = Color3.new(0.0823529, 0.780392, 0.0705882)
  160. autogun2.Position = UDim2.new(0.0249610022, 0, 0.102097452, 0)
  161. autogun2.Size = UDim2.new(0, 200, 0, 37)
  162. autogun2.Font = Enum.Font.SourceSans
  163. autogun2.Text = "Auto Farm DualFlint"
  164. autogun2.TextColor3 = Color3.new(0, 0, 0)
  165. autogun2.TextSize = 14
  166. autogun2.MouseButton1Down:connect(function()
  167. _G.Farming = true
  168.  
  169.  
  170. while _G.Farming do wait()
  171. for i,v in pairs(game.Workspace:GetChildren()) do
  172. if game.Players.LocalPlayer.Character and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") then
  173. if string.match(v.Name, "Fishman") and v.Humanoid.Health > 0 then
  174. repeat wait()
  175. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame + Vector3.new(0, 15, 0)
  176. game.ReplicatedStorage.Remotes.DMG:FireServer("\224\180\184\224\180\166\224\181\141\224\180\181\224\180\191\224\180\150\224\180\191\224\180\175\224\181\139\224\181\188\224\181\186", "DualFlint1", v.Name, Vector3.new(0,0,0))
  177. until v.Humanoid.Health == 0 or _G.Farming == false
  178. end
  179. end
  180. end
  181. end
  182. end)
  183.  
  184. startisland.Name = "startisland"
  185. startisland.Parent = MainFrame
  186. startisland.BackgroundColor3 = Color3.new(0.631373, 1, 0.67451)
  187. startisland.Position = UDim2.new(0.375975043, 0, 0.0351441354, 0)
  188. startisland.Size = UDim2.new(0, 200, 0, 37)
  189. startisland.Font = Enum.Font.SourceSans
  190. startisland.Text = "Start Island"
  191. startisland.TextColor3 = Color3.new(0, 0, 0)
  192. startisland.TextSize = 14
  193. startisland.MouseButton1Down:connect(function()
  194. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-822.859436,12.1389589,39.2934494))
  195. end)
  196.  
  197. fishman.Name = "fishman"
  198. fishman.Parent = MainFrame
  199. fishman.BackgroundColor3 = Color3.new(0.631373, 1, 0.67451)
  200. fishman.Position = UDim2.new(0.375975043, 0, 0.0578714088, 0)
  201. fishman.Size = UDim2.new(0, 200, 0, 37)
  202. fishman.Font = Enum.Font.SourceSans
  203. fishman.Text = "Fishman Island"
  204. fishman.TextColor3 = Color3.new(0, 0, 0)
  205. fishman.TextSize = 14
  206. fishman.MouseButton1Down:connect(function()
  207. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(5646.16064,14.2881813,7197.49854))
  208. end)
  209.  
  210. gor.Name = "gor"
  211. gor.Parent = MainFrame
  212. gor.BackgroundColor3 = Color3.new(0.631373, 1, 0.67451)
  213. gor.Position = UDim2.new(0.375975043, 0, 0.0805986747, 0)
  214. gor.Size = UDim2.new(0, 200, 0, 37)
  215. gor.Font = Enum.Font.SourceSans
  216. gor.Text = "Gorila Island"
  217. gor.TextColor3 = Color3.new(0, 0, 0)
  218. gor.TextSize = 14
  219. gor.MouseButton1Down:connect(function()
  220. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(1009.40906,11.2562227,-3059.21558))
  221. end)
  222.  
  223. TextLabel_4.Parent = MainFrame
  224. TextLabel_4.BackgroundColor3 = Color3.new(0, 1, 1)
  225. TextLabel_4.Position = UDim2.new(0.375975043, 0, 0.108722351, 0)
  226. TextLabel_4.Size = UDim2.new(0, 200, 0, 29)
  227. TextLabel_4.Font = Enum.Font.Fantasy
  228. TextLabel_4.Text = "NPC"
  229. TextLabel_4.TextColor3 = Color3.new(0, 0, 0)
  230. TextLabel_4.TextSize = 14
  231.  
  232. haki.Name = "haki"
  233. haki.Parent = MainFrame
  234. haki.BackgroundColor3 = Color3.new(0.631373, 1, 0.67451)
  235. haki.Position = UDim2.new(0.375975043, 0, 0.134038478, 0)
  236. haki.Size = UDim2.new(0, 200, 0, 37)
  237. haki.Font = Enum.Font.SourceSans
  238. haki.Text = "Buso Haki treiner"
  239. haki.TextColor3 = Color3.new(0, 0, 0)
  240. haki.TextSize = 14
  241. haki.MouseButton1Down:connect(function()
  242. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(11012.709,122.442825,-1571.65479))
  243. end)
  244.  
  245. black.Name = "black"
  246. black.Parent = MainFrame
  247. black.BackgroundColor3 = Color3.new(0.631373, 1, 0.67451)
  248. black.Position = UDim2.new(0.375975043, 0, 0.156765759, 0)
  249. black.Size = UDim2.new(0, 200, 0, 37)
  250. black.Font = Enum.Font.SourceSans
  251. black.Text = "Black Leg treiner"
  252. black.TextColor3 = Color3.new(0, 0, 0)
  253. black.TextSize = 14
  254. black.MouseButton1Down:connect(function()
  255. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(2706.72974,17.7794476,1166.85583))
  256. end)
  257.  
  258. dfseller.Name = "dfseller"
  259. dfseller.Parent = MainFrame
  260. dfseller.BackgroundColor3 = Color3.new(0.631373, 1, 0.67451)
  261. dfseller.Position = UDim2.new(0.375975043, 0, 0.17949304, 0)
  262. dfseller.Size = UDim2.new(0, 200, 0, 37)
  263. dfseller.Font = Enum.Font.SourceSans
  264. dfseller.Text = "DF Seller"
  265. dfseller.TextColor3 = Color3.new(0, 0, 0)
  266. dfseller.TextSize = 14
  267. dfseller.MouseButton1Down:connect(function()
  268. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(7127.56543,54.3516693,1293.44604))
  269. end)
  270.  
  271. chest.Name = "chest"
  272. chest.Parent = MainFrame
  273. chest.BackgroundColor3 = Color3.new(1, 1, 1)
  274. chest.Position = UDim2.new(0.733229339, 0, 0.0350669622, 0)
  275. chest.Size = UDim2.new(0, 135, 0, 37)
  276. chest.Font = Enum.Font.SourceSans
  277. chest.Text = "Tp Chest"
  278. chest.TextColor3 = Color3.new(0, 0, 0)
  279. chest.TextSize = 14
  280. chest.MouseButton1Down:connect(function()
  281. for i,v in pairs(game.Workspace.Chests:GetChildren()) do
  282. if v.Transparency == 1 then else
  283. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * 4
  284. end
  285. end
  286.  
  287.  
  288. end)
  289.  
  290. dftp.Name = "dftp"
  291. dftp.Parent = MainFrame
  292. dftp.BackgroundColor3 = Color3.new(1, 1, 1)
  293. dftp.Position = UDim2.new(0.733229339, 0, 0.0577942356, 0)
  294. dftp.Size = UDim2.new(0, 135, 0, 37)
  295. dftp.Font = Enum.Font.SourceSans
  296. dftp.Text = "Tp DF"
  297. dftp.TextColor3 = Color3.new(0, 0, 0)
  298. dftp.TextSize = 14
  299. dftp.MouseButton1Down:connect(function()
  300. check = function(x)
  301.  
  302. for _,v in next, x:GetChildren() do
  303. if v:IsA("Tool") then
  304. if not v.Parent:FindFirstChild("Humanoid") then
  305. v.TextureId = "";
  306. v.Parent = game.Players.LocalPlayer.Backpack
  307. end
  308. end
  309. check(v)
  310. end
  311. end
  312. check(workspace)
  313.  
  314. end)
  315.  
  316. x2.Name = "x2"
  317. x2.Parent = MainFrame
  318. x2.BackgroundColor3 = Color3.new(1, 1, 1)
  319. x2.Position = UDim2.new(0.733229339, 0, 0.0792930052, 0)
  320. x2.Size = UDim2.new(0, 135, 0, 37)
  321. x2.Font = Enum.Font.SourceSans
  322. x2.Text = "x2 Exp(1hour)"
  323. x2.TextColor3 = Color3.new(0, 0, 0)
  324. x2.TextSize = 14
  325. x2.MouseButton1Down:connect(function()
  326. game.Players.LocalPlayer.Data.DoubleXP.Value = 1
  327. end)
  328.  
  329. off.Name = "off"
  330. off.Parent = MainFrame
  331. off.BackgroundColor3 = Color3.new(0.980392, 0, 0.0470588)
  332. off.Position = UDim2.new(0.0249610022, 0, 0.124824725, 0)
  333. off.Size = UDim2.new(0, 200, 0, 37)
  334. off.Font = Enum.Font.SourceSans
  335. off.Text = "Off"
  336. off.TextColor3 = Color3.new(0, 0, 0)
  337. off.TextSize = 14
  338. off.MouseButton1Down:connect(function()
  339. _G.Farming = false
  340. _G.mon = false
  341. _G.dff = false
  342. _G.cb = false
  343. end)
  344. -- Scripts:
  345. function SCRIPT_BWYA77_FAKESCRIPT() -- MainFrame.LocalScript
  346. local script = Instance.new('LocalScript')
  347. script.Parent = MainFrame
  348. while wait(1) do
  349. script.Parent.BackgroundColor3 = Color3.fromHSV(math.random(100)/100,1,1)
  350. end
  351.  
  352. end
  353. coroutine.resume(coroutine.create(SCRIPT_BWYA77_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement