Advertisement
takuyahd

Script One Piece Open Seas GUI 1

Nov 3rd, 2019
9,649
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.59 KB | None | 0 0
  1. -- One Piece Open Seas GUI
  2. -- https://v3rmillion.net/showthread.php?tid=905126&highlight=One+Piece+Open+Seas
  3. -- press f9 for credits
  4.  
  5. game.StarterGui:SetCore("SendNotification", {
  6. Title = "Credits:";
  7. Text = "Xerocas/January, CyclicaIIy";
  8. Duration = 3;
  9. })
  10. wait(0.75)
  11. game.StarterGui:SetCore("SendNotification", {
  12. Title = "Note About NPC Farm:";
  13. Text = "Reset to stop autofarm or die to the npc ur farming.";
  14. Duration = 3;
  15. })
  16. local ScreenGui = Instance.new("ScreenGui")
  17. local AutoFarm = Instance.new("Frame")
  18. local Name3 = Instance.new("TextLabel")
  19. local Bounty = Instance.new("TextButton")
  20. local FarmNPC = Instance.new("TextButton")
  21. local NPCName1 = Instance.new("TextBox")
  22. local EXP = Instance.new("TextButton")
  23. local OffEXP = Instance.new("TextButton")
  24. local Dupe = Instance.new("Frame")
  25. local Name = Instance.new("TextLabel")
  26. local All = Instance.new("TextButton")
  27. local DTool = Instance.new("TextButton")
  28. local ToolName = Instance.new("TextBox")
  29. local TP = Instance.new("Frame")
  30. local Name1 = Instance.new("TextLabel")
  31. local TPDF = Instance.new("TextButton")
  32. local TPPLR = Instance.new("TextButton")
  33. local PlayerName = Instance.new("TextBox")
  34. local NPCName = Instance.new("TextBox")
  35. local TPNPC = Instance.new("TextButton")
  36. local Humanoid = Instance.new("Frame")
  37. local Name2 = Instance.new("TextLabel")
  38. local Reset = Instance.new("TextButton")
  39. local WalkSpeed = Instance.new("TextButton")
  40. local Value = Instance.new("TextBox")
  41. local JP = Instance.new("TextButton")
  42. local troll = Instance.new("TextLabel")
  43. --Properties:
  44. ScreenGui.Parent = game.CoreGui
  45.  
  46. AutoFarm.Name = "AutoFarm"
  47. AutoFarm.Parent = ScreenGui
  48. AutoFarm.Active = true
  49. AutoFarm.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  50. AutoFarm.Position = UDim2.new(0.809090912, 0, 0.0675477311, 0)
  51. AutoFarm.Size = UDim2.new(0, 129, 0, 167)
  52.  
  53. Name3.Name = "Name3"
  54. Name3.Parent = AutoFarm
  55. Name3.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  56. Name3.BorderColor3 = Color3.new(0, 0, 0)
  57. Name3.Position = UDim2.new(0, 0, -0.138878822, 0)
  58. Name3.Size = UDim2.new(0, 129, 0, 23)
  59. Name3.Font = Enum.Font.SourceSansSemibold
  60. Name3.Text = "AutoFarm"
  61. Name3.TextColor3 = Color3.new(1, 1, 1)
  62. Name3.TextSize = 14
  63.  
  64. Bounty.Name = "Bounty"
  65. Bounty.Parent = AutoFarm
  66. Bounty.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  67. Bounty.Position = UDim2.new(0.0465116277, 0, 0.0538921691, 0)
  68. Bounty.Size = UDim2.new(0, 115, 0, 26)
  69. Bounty.Font = Enum.Font.SourceSansSemibold
  70. Bounty.Text = "Bounty Farm"
  71. Bounty.TextColor3 = Color3.new(1, 1, 1)
  72. Bounty.TextSize = 14
  73. Bounty.MouseButton1Click:connect(function()
  74. local localplr = game:GetService("Players").LocalPlayer
  75. local RootPart = localplr.Character.HumanoidRootPart
  76. game:GetService('RunService').Stepped:connect(function()
  77. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  78. if not v.Character:FindFirstChild("SafeZoneFF") and v.Character.Humanoid.Health >= 0 then
  79. localplr.Character.Humanoid.HipHeight = v.Character:FindFirstChild("Humanoid").HipHeight
  80. RootPart.CFrame = v.Character:FindFirstChild("HumanoidRootPart").CFrame + v.Character:FindFirstChild("HumanoidRootPart").CFrame.lookVector*-3
  81. elseif v.Character.Humanoid.Health <= 0 then
  82. print("boop")
  83. end
  84. end
  85. end)
  86. end)
  87.  
  88. FarmNPC.Name = "FarmNPC"
  89. FarmNPC.Parent = AutoFarm
  90. FarmNPC.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  91. FarmNPC.Position = UDim2.new(0.0387596898, 0, 0.419161677, 0)
  92. FarmNPC.Size = UDim2.new(0, 116, 0, 26)
  93. FarmNPC.Font = Enum.Font.SourceSansSemibold
  94. FarmNPC.Text = "Farm NPC"
  95. FarmNPC.TextColor3 = Color3.new(1, 1, 1)
  96. FarmNPC.TextSize = 14
  97. FarmNPC.MouseButton1Click:connect(function()
  98. while wait(0.2) do
  99. for i,v in pairs(workspace:GetDescendants()) do
  100. if string.find(v.Name, NPCName1.Text) and v:FindFirstChild("HumanoidRootPart") then
  101. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v:FindFirstChild("HumanoidRootPart").CFrame
  102. end
  103. end
  104. end
  105. end)
  106.  
  107.  
  108.  
  109. NPCName1.Name = "NPCName1"
  110. NPCName1.Parent = AutoFarm
  111. NPCName1.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  112. NPCName1.Position = UDim2.new(0.0465116277, 0, 0.245508984, 0)
  113. NPCName1.Size = UDim2.new(0, 115, 0, 23)
  114. NPCName1.Font = Enum.Font.SourceSansSemibold
  115. NPCName1.Text = "NPC Name"
  116. NPCName1.TextColor3 = Color3.new(1, 1, 1)
  117. NPCName1.TextSize = 14
  118.  
  119. EXP.Name = "EXP"
  120. EXP.Parent = AutoFarm
  121. EXP.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  122. EXP.Position = UDim2.new(0.0542635657, 0, 0.598802388, 0)
  123. EXP.Size = UDim2.new(0, 115, 0, 26)
  124. EXP.Font = Enum.Font.SourceSansSemibold
  125. EXP.Text = "EXPFarm"
  126. EXP.TextColor3 = Color3.new(1, 1, 1)
  127. EXP.TextSize = 14
  128. EXP.MouseButton1Click:connect(function()
  129. local lplr = game:GetService("Players").LocalPlayer
  130. local backpack = lplr.Backpack
  131. _G.EXPFarm = true --- turn this to false if you want to stop it
  132. while _G.EXPFarm do
  133. wait()
  134. for i,v in next, backpack:GetChildren() do
  135. if v.Name == "Katana" then
  136. v.Parent = lplr.Character
  137. end
  138. end
  139. for i,v in next, backpack:GetChildren() do
  140. if v.Name == "Scimitar" then
  141. v.Parent = lplr.Character
  142. end
  143. end
  144. for i,v in next, backpack:GetChildren() do
  145. if string.find(v.Name, "bound") then
  146. v.Parent = lplr.Character
  147. end
  148. end
  149. for i,v in next, backpack:GetChildren() do
  150. if v.Name == "Combat" then
  151. v.Parent = lplr.Character
  152. end
  153. end
  154. for i,v in next, backpack:GetChildren() do
  155. if v.Name == "Giant Club" then
  156. v.Parent = lplr.Character
  157. end
  158. end
  159. for i,v in next, backpack:GetChildren() do
  160. if v.Name == "Wooden Club" then
  161. v.Parent = lplr.Character
  162. end
  163. end
  164. for i,v in next, backpack:GetChildren() do
  165. if v.Name == "Eleblade" then
  166. v.Parent = lplr.Character
  167. end
  168. end
  169. for i,v in next, backpack:GetChildren() do
  170. if v.Name == "Flintlock" then
  171. v.Parent = lplr.Character
  172. end
  173. end
  174. for i,v in next, backpack:GetChildren() do
  175. if v.Name == "Rusty Blade" then
  176. v.Parent = lplr.Character
  177. end
  178. end
  179. for i,v in next, backpack:GetChildren() do
  180. if v.Name == "Cutlass" then
  181. v.Parent = lplr.Character
  182. end
  183. end
  184. for i,v in next, backpack:GetChildren() do
  185. if v.Name == "Claymore" then
  186. v.Parent = lplr.Character
  187. end
  188. end
  189. for i,v in next, backpack:GetChildren() do
  190. if v.Name == "Ghost Pirate's Cutlass" then
  191. v.Parent = lplr.Character
  192. end
  193. end
  194. for i,v in next, backpack:GetChildren() do
  195. if v.Name == "Ice Saber" then
  196. v.Parent = lplr.Character
  197. end
  198. end
  199. for i,v in next, backpack:GetChildren() do
  200. if v.Name == "Infernoblade" then
  201. v.Parent = lplr.Character
  202. end
  203. end
  204. for i,v in next, backpack:GetChildren() do
  205. if v.Name == "DeathSpeaker" then
  206. v.Parent = lplr.Character
  207. end
  208. end
  209. for i,v in next, backpack:GetChildren() do
  210. if v.Name == "Boomblade" then
  211. v.Parent = lplr.Character
  212. end
  213. end
  214. for i,v in next, backpack:GetChildren() do
  215. if v.Name == "Poseidon's Fury" then
  216. v.Parent = lplr.Character
  217. end
  218. end
  219. for i,v in next, backpack:GetChildren() do
  220. if v.Name == "Arcanium" then
  221. v.Parent = lplr.Character
  222. end
  223. end
  224. for i,v in next, backpack:GetChildren() do
  225. if v.Name == "Windsteel Dagger" then
  226. v.Parent = lplr.Character
  227. end
  228. end
  229. for i,v in next, backpack:GetChildren() do
  230. if v.Name == "Energion" then
  231. v.Parent = lplr.Character
  232. end
  233. end
  234. for i,v in next, backpack:GetChildren() do
  235. if v.Name == "Arceus" then
  236. v.Parent = lplr.Character
  237. end
  238. end
  239. for i,v in next, backpack:GetChildren() do
  240. if v.Name == "Light Blade" then
  241. v.Parent = lplr.Character
  242. end
  243. end
  244. for i,v in next, backpack:GetChildren() do
  245. if v.Name == "Santa's Blade" then
  246. v.Parent = lplr.Character
  247. end
  248. end
  249. for i,v in next, backpack:GetChildren() do
  250. if v.Name == "Speedlock" then
  251. v.Parent = lplr.Character
  252. end
  253. end
  254. for i,v in next, backpack:GetChildren() do
  255. if v.Name == "Goldlock" then
  256. v.Parent = lplr.Character
  257. end
  258. end
  259. for i,v in next, backpack:GetChildren() do
  260. if v.Name == "Venomlock" then
  261. v.Parent = lplr.Character
  262. end
  263. end
  264. for i,v in next, backpack:GetChildren() do
  265. if v.Name == "Boomlock" then
  266. v.Parent = lplr.Character
  267. end
  268. end
  269. for i,v in pairs(lplr.Character:GetDescendants()) do
  270. if v:IsA("Tool") and v:FindFirstChild("ActionEvent") then
  271. v:FindFirstChild("ActionEvent"):FireServer()
  272. end
  273. end
  274. end
  275. end)
  276.  
  277. OffEXP.Name = "OffEXP"
  278. OffEXP.Parent = AutoFarm
  279. OffEXP.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  280. OffEXP.Position = UDim2.new(0.0542635657, 0, 0.790419161, 0)
  281. OffEXP.Size = UDim2.new(0, 115, 0, 26)
  282. OffEXP.Font = Enum.Font.SourceSansSemibold
  283. OffEXP.Text = "Turn Off EXPFarm"
  284. OffEXP.TextColor3 = Color3.new(1, 1, 1)
  285. OffEXP.TextSize = 14
  286. OffEXP.MouseButton1Click:connect(function()
  287. local lplr = game:GetService("Players").LocalPlayer
  288. local backpack = lplr.Backpack
  289. _G.EXPFarm = false --- turn this to false if you want to stop it
  290. while _G.EXPFarm do
  291. wait()
  292. for i,v in next, backpack:GetChildren() do
  293. if v.Name == "Katana" then
  294. v.Parent = lplr.Character
  295. end
  296. end
  297. for i,v in next, backpack:GetChildren() do
  298. if v.Name == "Scimitar" then
  299. v.Parent = lplr.Character
  300. end
  301. end
  302. for i,v in next, backpack:GetChildren() do
  303. if string.find(v.Name, "bound") then
  304. v.Parent = lplr.Character
  305. end
  306. end
  307. for i,v in next, backpack:GetChildren() do
  308. if v.Name == "Combat" then
  309. v.Parent = lplr.Character
  310. end
  311. end
  312. for i,v in next, backpack:GetChildren() do
  313. if v.Name == "Giant Club" then
  314. v.Parent = lplr.Character
  315. end
  316. end
  317. for i,v in next, backpack:GetChildren() do
  318. if v.Name == "Wooden Club" then
  319. v.Parent = lplr.Character
  320. end
  321. end
  322. for i,v in next, backpack:GetChildren() do
  323. if v.Name == "Eleblade" then
  324. v.Parent = lplr.Character
  325. end
  326. end
  327. for i,v in next, backpack:GetChildren() do
  328. if v.Name == "Flintlock" then
  329. v.Parent = lplr.Character
  330. end
  331. end
  332. for i,v in next, backpack:GetChildren() do
  333. if v.Name == "Rusty Blade" then
  334. v.Parent = lplr.Character
  335. end
  336. end
  337. for i,v in next, backpack:GetChildren() do
  338. if v.Name == "Cutlass" then
  339. v.Parent = lplr.Character
  340. end
  341. end
  342. for i,v in next, backpack:GetChildren() do
  343. if v.Name == "Claymore" then
  344. v.Parent = lplr.Character
  345. end
  346. end
  347. for i,v in next, backpack:GetChildren() do
  348. if v.Name == "Ghost Pirate's Cutlass" then
  349. v.Parent = lplr.Character
  350. end
  351. end
  352. for i,v in next, backpack:GetChildren() do
  353. if v.Name == "Ice Saber" then
  354. v.Parent = lplr.Character
  355. end
  356. end
  357. for i,v in next, backpack:GetChildren() do
  358. if v.Name == "Infernoblade" then
  359. v.Parent = lplr.Character
  360. end
  361. end
  362. for i,v in next, backpack:GetChildren() do
  363. if v.Name == "DeathSpeaker" then
  364. v.Parent = lplr.Character
  365. end
  366. end
  367. for i,v in next, backpack:GetChildren() do
  368. if v.Name == "Boomblade" then
  369. v.Parent = lplr.Character
  370. end
  371. end
  372. for i,v in next, backpack:GetChildren() do
  373. if v.Name == "Poseidon's Fury" then
  374. v.Parent = lplr.Character
  375. end
  376. end
  377. for i,v in next, backpack:GetChildren() do
  378. if v.Name == "Arcanium" then
  379. v.Parent = lplr.Character
  380. end
  381. end
  382. for i,v in next, backpack:GetChildren() do
  383. if v.Name == "Windsteel Dagger" then
  384. v.Parent = lplr.Character
  385. end
  386. end
  387. for i,v in next, backpack:GetChildren() do
  388. if v.Name == "Energion" then
  389. v.Parent = lplr.Character
  390. end
  391. end
  392. for i,v in next, backpack:GetChildren() do
  393. if v.Name == "Arceus" then
  394. v.Parent = lplr.Character
  395. end
  396. end
  397. for i,v in next, backpack:GetChildren() do
  398. if v.Name == "Light Blade" then
  399. v.Parent = lplr.Character
  400. end
  401. end
  402. for i,v in next, backpack:GetChildren() do
  403. if v.Name == "Santa's Blade" then
  404. v.Parent = lplr.Character
  405. end
  406. end
  407. for i,v in next, backpack:GetChildren() do
  408. if v.Name == "Speedlock" then
  409. v.Parent = lplr.Character
  410. end
  411. end
  412. for i,v in next, backpack:GetChildren() do
  413. if v.Name == "Goldlock" then
  414. v.Parent = lplr.Character
  415. end
  416. end
  417. for i,v in next, backpack:GetChildren() do
  418. if v.Name == "Venomlock" then
  419. v.Parent = lplr.Character
  420. end
  421. end
  422. for i,v in next, backpack:GetChildren() do
  423. if v.Name == "Boomlock" then
  424. v.Parent = lplr.Character
  425. end
  426. end
  427. for i,v in pairs(lplr.Character:GetDescendants()) do
  428. if v:IsA("Tool") and v:FindFirstChild("ActionEvent") then
  429. v:FindFirstChild("ActionEvent"):FireServer()
  430. end
  431. end
  432. end
  433. end)
  434.  
  435. Dupe.Name = "Dupe"
  436. Dupe.Parent = ScreenGui
  437. Dupe.Active = true
  438. Dupe.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  439. Dupe.Position = UDim2.new(0.726666629, 0, 0.0660792962, 0)
  440. Dupe.Size = UDim2.new(0, 129, 0, 167)
  441.  
  442. Name.Name = "Name"
  443. Name.Parent = Dupe
  444. Name.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  445. Name.BorderColor3 = Color3.new(0, 0, 0)
  446. Name.Position = UDim2.new(0, 0, -0.132890806, 0)
  447. Name.Size = UDim2.new(0, 129, 0, 23)
  448. Name.Font = Enum.Font.SourceSansSemibold
  449. Name.Text = "Dupe"
  450. Name.TextColor3 = Color3.new(1, 1, 1)
  451. Name.TextSize = 14
  452.  
  453. All.Name = "All"
  454. All.Parent = Dupe
  455. All.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  456. All.Position = UDim2.new(0.0465116277, 0, 0.0538921691, 0)
  457. All.Size = UDim2.new(0, 115, 0, 26)
  458. All.Font = Enum.Font.SourceSansSemibold
  459. All.Text = "Dupe All"
  460. All.TextColor3 = Color3.new(1, 1, 1)
  461. All.TextSize = 14
  462. All.MouseButton1Click:connect(function()
  463. local LocalPlayer = game:GetService("Players").LocalPlayer
  464. local function saveTools()
  465. LocalPlayer.Character:WaitForChild("Humanoid").Died:Connect(function()
  466. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  467. for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  468. if tool:IsA("Tool") then
  469. tool.Parent = LocalPlayer
  470. end
  471. end
  472. end)
  473. end
  474. LocalPlayer.CharacterAdded:Connect(function(char)
  475. for _, tool in pairs(LocalPlayer:GetChildren()) do
  476. if tool:IsA("Tool") then
  477. tool.Parent = LocalPlayer.Backpack
  478. end
  479. end
  480. saveTools()
  481. end)
  482. saveTools()
  483. LocalPlayer.Character.Humanoid.Health = 0
  484. end)
  485.  
  486.  
  487.  
  488. DTool.Name = "DTool"
  489. DTool.Parent = Dupe
  490. DTool.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  491. DTool.Position = UDim2.new(0.0387596898, 0, 0.419161677, 0)
  492. DTool.Size = UDim2.new(0, 116, 0, 26)
  493. DTool.Font = Enum.Font.SourceSansSemibold
  494. DTool.Text = "Dupe Tool"
  495. DTool.TextColor3 = Color3.new(1, 1, 1)
  496. DTool.TextSize = 14
  497. DTool.MouseButton1Click:connect(function()
  498. local LocalPlayer = game:GetService("Players").LocalPlayer
  499. local function saveTools()
  500. LocalPlayer.Character:WaitForChild("Humanoid").Died:Connect(function()
  501. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  502. for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  503. if string.find(tool.Name, ToolName.Text) and tool:IsA("Tool") then
  504. tool.Parent = LocalPlayer
  505. end
  506. end
  507. end)
  508. end
  509. LocalPlayer.CharacterAdded:Connect(function(char)
  510. for _, tool in pairs(LocalPlayer:GetChildren()) do
  511. if string.find(tool.Name, ToolName.Text) and tool:IsA("Tool") then
  512. tool.Parent = LocalPlayer.Backpack
  513. end
  514. end
  515. saveTools()
  516. end)
  517. saveTools()
  518. LocalPlayer.Character.Humanoid.Health = 0
  519. end)
  520.  
  521.  
  522. ToolName.Name = "ToolName"
  523. ToolName.Parent = Dupe
  524. ToolName.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  525. ToolName.Position = UDim2.new(0.0465116277, 0, 0.245508984, 0)
  526. ToolName.Size = UDim2.new(0, 115, 0, 23)
  527. ToolName.Font = Enum.Font.SourceSansSemibold
  528. ToolName.Text = "Tool Name"
  529. ToolName.TextColor3 = Color3.new(1, 1, 1)
  530. ToolName.TextSize = 14
  531.  
  532. TP.Name = "TP"
  533. TP.Parent = ScreenGui
  534. TP.Active = true
  535. TP.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  536. TP.Position = UDim2.new(0.644242406, 0, 0.0675477311, 0)
  537. TP.Size = UDim2.new(0, 129, 0, 167)
  538.  
  539. Name1.Name = "Name1"
  540. Name1.Parent = TP
  541. Name1.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  542. Name1.BorderColor3 = Color3.new(0, 0, 0)
  543. Name1.Position = UDim2.new(0, 0, -0.138878822, 0)
  544. Name1.Size = UDim2.new(0, 129, 0, 23)
  545. Name1.Font = Enum.Font.SourceSansSemibold
  546. Name1.Text = "Tp To Stuff"
  547. Name1.TextColor3 = Color3.new(1, 1, 1)
  548. Name1.TextSize = 14
  549.  
  550. TPDF.Name = "TPDF"
  551. TPDF.Parent = TP
  552. TPDF.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  553. TPDF.Position = UDim2.new(0.0465116277, 0, 0.0538921691, 0)
  554. TPDF.Size = UDim2.new(0, 115, 0, 26)
  555. TPDF.Font = Enum.Font.SourceSansSemibold
  556. TPDF.Text = "Tp To DF"
  557. TPDF.TextColor3 = Color3.new(1, 1, 1)
  558. TPDF.TextSize = 14
  559. TPDF.MouseButton1Click:connect(function()
  560. for i,v in pairs(workspace:GetDescendants()) do
  561. if v:IsA('Tool') and string.find(v.Name, "Mi") then
  562. devilfruit = v.Handle.CFrame
  563. end
  564. end
  565.  
  566.  
  567. local ts = game:GetService("TweenService")
  568. local uis = game:GetService("UserInputService")
  569. local char = game.Players.LocalPlayer.Character
  570.  
  571. local part = char.HumanoidRootPart
  572. local ti = TweenInfo.new(5, Enum.EasingStyle.Linear) --- change the 5 to what ever speed you what ( isnt really speed )
  573. local tp = {CFrame = devilfruit}
  574. ts:Create(part, ti, tp):Play()
  575. end)
  576.  
  577.  
  578. TPPLR.Name = "TPPLR"
  579. TPPLR.Parent = TP
  580. TPPLR.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  581. TPPLR.Position = UDim2.new(0.0542635657, 0, 0.419161677, 0)
  582. TPPLR.Size = UDim2.new(0, 113, 0, 27)
  583. TPPLR.Font = Enum.Font.SourceSansSemibold
  584. TPPLR.Text = "Tp To Player"
  585. TPPLR.TextColor3 = Color3.new(1, 1, 1)
  586. TPPLR.TextSize = 14
  587. TPPLR.MouseButton1Click:connect(function()
  588. local Target = PlayerName.Text
  589.  
  590. local localplr = game:GetService("Players").LocalPlayer
  591. local RootPart = localplr.Character.HumanoidRootPart
  592. local plr = game:GetService("Players")[Target]
  593. local RootPart1 = plr.Character.HumanoidRootPart
  594.  
  595. local lookVector = RootPart1.CFrame.lookVector
  596. local Value = -3
  597.  
  598. RootPart.CFrame = RootPart1.CFrame + lookVector*Value
  599. end)
  600.  
  601.  
  602. PlayerName.Name = "PlayerName"
  603. PlayerName.Parent = TP
  604. PlayerName.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  605. PlayerName.Position = UDim2.new(0.0542635657, 0, 0.245508984, 0)
  606. PlayerName.Size = UDim2.new(0, 113, 0, 23)
  607. PlayerName.Font = Enum.Font.SourceSansSemibold
  608. PlayerName.Text = "Player Name"
  609. PlayerName.TextColor3 = Color3.new(1, 1, 1)
  610. PlayerName.TextSize = 14
  611.  
  612. NPCName.Name = "NPCName"
  613. NPCName.Parent = TP
  614. NPCName.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  615. NPCName.Position = UDim2.new(0.0542635657, 0, 0.616766453, 0)
  616. NPCName.Size = UDim2.new(0, 113, 0, 23)
  617. NPCName.Font = Enum.Font.SourceSansSemibold
  618. NPCName.Text = "NPC Name"
  619. NPCName.TextColor3 = Color3.new(1, 1, 1)
  620. NPCName.TextSize = 14
  621.  
  622. TPNPC.Name = "TPNPC"
  623. TPNPC.Parent = TP
  624. TPNPC.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  625. TPNPC.Position = UDim2.new(0.0542635657, 0, 0.790419161, 0)
  626. TPNPC.Size = UDim2.new(0, 113, 0, 25)
  627. TPNPC.Font = Enum.Font.SourceSansSemibold
  628. TPNPC.Text = "Tp To NPC"
  629. TPNPC.TextColor3 = Color3.new(1, 1, 1)
  630. TPNPC.TextSize = 14
  631. TPNPC.MouseButton1Click:connect(function()
  632. for i,v in pairs(workspace:GetDescendants()) do
  633. if string.find(v.Name, NPCName.Text) and v:FindFirstChild("HumanoidRootPart") then
  634. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v:FindFirstChild("HumanoidRootPart").CFrame
  635. end
  636. end
  637. end)
  638.  
  639.  
  640.  
  641. Humanoid.Name = "Humanoid"
  642. Humanoid.Parent = ScreenGui
  643. Humanoid.Active = true
  644. Humanoid.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  645. Humanoid.Position = UDim2.new(0.561212063, 0, 0.0660792962, 0)
  646. Humanoid.Size = UDim2.new(0, 129, 0, 167)
  647.  
  648. Name2.Name = "Name2"
  649. Name2.Parent = Humanoid
  650. Name2.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  651. Name2.BorderColor3 = Color3.new(0, 0, 0)
  652. Name2.Position = UDim2.new(0, 0, -0.132890806, 0)
  653. Name2.Size = UDim2.new(0, 129, 0, 23)
  654. Name2.Font = Enum.Font.SourceSansSemibold
  655. Name2.Text = "Humanoid Change"
  656. Name2.TextColor3 = Color3.new(1, 1, 1)
  657. Name2.TextSize = 14
  658.  
  659. Reset.Name = "Reset"
  660. Reset.Parent = Humanoid
  661. Reset.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  662. Reset.Position = UDim2.new(0.0465116277, 0, 0.0538921691, 0)
  663. Reset.Size = UDim2.new(0, 115, 0, 26)
  664. Reset.Font = Enum.Font.SourceSansSemibold
  665. Reset.Text = "Reset"
  666. Reset.TextColor3 = Color3.new(1, 1, 1)
  667. Reset.TextSize = 14
  668. Reset.MouseButton1Click:connect(function()
  669. game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 0
  670. end)
  671.  
  672.  
  673.  
  674.  
  675.  
  676. troll.Name = "troll"
  677. troll.Parent = ScreenGui
  678. troll.BackgroundColor3 = Color3.new(1, 1, 1)
  679. troll.BackgroundTransparency = 1
  680. troll.Position = UDim2.new(0.890909135, 0, 0.951541901, 0)
  681. troll.Size = UDim2.new(0, 198, 0, 33)
  682. troll.Font = Enum.Font.GothamSemibold
  683. troll.Text = "teg pi deggol"
  684. troll.TextColor3 = Color3.new(1, 0.0980392, 0.92549)
  685. troll.TextSize = 21
  686. -- Scripts:
  687. function SCRIPT_SWDE86_FAKESCRIPT() -- AutoFarm.LocalScript
  688. local script = Instance.new('LocalScript')
  689. script.Parent = AutoFarm
  690. script.Parent.Draggable = true;
  691.  
  692. end
  693. coroutine.resume(coroutine.create(SCRIPT_SWDE86_FAKESCRIPT))
  694. function SCRIPT_WZWT73_FAKESCRIPT() -- Dupe.LocalScript
  695. local script = Instance.new('LocalScript')
  696. script.Parent = Dupe
  697. script.Parent.Draggable = true;
  698.  
  699. end
  700. coroutine.resume(coroutine.create(SCRIPT_WZWT73_FAKESCRIPT))
  701. function SCRIPT_WENL72_FAKESCRIPT() -- TP.LocalScript
  702. local script = Instance.new('LocalScript')
  703. script.Parent = TP
  704. script.Parent.Draggable = true;
  705.  
  706. end
  707. coroutine.resume(coroutine.create(SCRIPT_WENL72_FAKESCRIPT))
  708. function SCRIPT_BEZV67_FAKESCRIPT() -- Humanoid.LocalScript
  709. local script = Instance.new('LocalScript')
  710. script.Parent = Humanoid
  711. script.Parent.Draggable = true;
  712.  
  713. end
  714. coroutine.resume(coroutine.create(SCRIPT_BEZV67_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement