Advertisement
Kyruin

One Piece GUI

Jan 17th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.51 KB | None | 0 0
  1. local OnePieceOceanVoyageGUI = Instance.new("ScreenGui")
  2. OnePieceOceanVoyageGUI.Name = "OnePieceGUI"
  3. OnePieceOceanVoyageGUI.Parent = game.CoreGui
  4.  
  5. local FrameOne = Instance.new("Frame")
  6. FrameOne.Name = "FrameOne"
  7. FrameOne.Parent = OnePieceOceanVoyageGUI
  8. FrameOne.Active = true
  9. FrameOne.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  10. FrameOne.BackgroundTransparency = 0.34999999403954
  11. FrameOne.Draggable = true
  12. FrameOne.Size = UDim2.new(-0.0255439933, 400, 0.095238097, 150)
  13.  
  14. local Name = Instance.new("TextBox")
  15. Name.Name = "Name"
  16. Name.Parent = FrameOne
  17. Name.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  18. Name.BorderColor3 = Color3.new(0, 0, 0)
  19. Name.Position = UDim2.new(0.0187667552, 0, 0.683080792, 0)
  20. Name.Size = UDim2.new(-0.0938337818, 200, -0.140625, 50)
  21. Name.ZIndex = 2
  22. Name.Font = Enum.Font.SourceSans
  23. Name.FontSize = Enum.FontSize.Size14
  24. Name.Text = "Name"
  25. Name.TextColor3 = Color3.new(1, 1, 1)
  26. Name.TextScaled = true
  27. Name.TextSize = 14
  28. Name.TextWrapped = true
  29.  
  30. local DupePlr = Instance.new("TextButton")
  31. DupePlr.Name = "DupePlr"
  32. DupePlr.Parent = FrameOne
  33. DupePlr.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  34. DupePlr.BorderColor3 = Color3.new(0, 0, 0)
  35. DupePlr.Position = UDim2.new(0.0199999996, 0, 0.0614583306, 30)
  36. DupePlr.Size = UDim2.new(0, 50, 0, 25)
  37. DupePlr.Font = Enum.Font.Arial
  38. DupePlr.FontSize = Enum.FontSize.Size14
  39. DupePlr.Text = "DupePlr"
  40. DupePlr.TextColor3 = Color3.new(1, 1, 1)
  41. DupePlr.TextScaled = true
  42. DupePlr.TextSize = 14
  43. DupePlr.TextWrapped = true
  44. DupePlr.MouseButton1Click:connect(function()
  45. for i,v in pairs(game.Players[Name.Text].Backpack:GetChildren()) do
  46. if v:IsA("Script") or v:IsA("LocalScript") then
  47. warn('whoops')
  48. else
  49. if not v:FindFirstChild("del") then
  50. local x = v:Clone()
  51. x.Parent = v.Parent
  52. else
  53. warn('whoops')
  54. end
  55. end
  56. end
  57. end)
  58.  
  59. local Credits = Instance.new("TextLabel")
  60. Credits.Name = "Credits"
  61. Credits.Parent = FrameOne
  62. Credits.Active = true
  63. Credits.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  64. Credits.BorderColor3 = Color3.new(0, 0, 0)
  65. Credits.Position = UDim2.new(0.0187667552, 0, 0.0591715984, 0)
  66. Credits.Size = UDim2.new(-0.0965147465, 200, 0, 25)
  67. Credits.Font = Enum.Font.ArialBold
  68. Credits.FontSize = Enum.FontSize.Size14
  69. Credits.Text = "Made by: Kyruin"
  70. Credits.TextColor3 = Color3.new(0.219608, 0, 0)
  71. Credits.TextScaled = true
  72. Credits.TextSize = 14
  73. Credits.TextWrapped = true
  74.  
  75. local KickPlr = Instance.new("TextButton")
  76. KickPlr.Name = "KickPlr"
  77. KickPlr.Parent = FrameOne
  78. KickPlr.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  79. KickPlr.BorderColor3 = Color3.new(0, 0, 0)
  80. KickPlr.Position = UDim2.new(0.169717669, 0, 0.0614372529, 30)
  81. KickPlr.Size = UDim2.new(0, 50, 0, 25)
  82. KickPlr.Font = Enum.Font.Arial
  83. KickPlr.FontSize = Enum.FontSize.Size14
  84. KickPlr.Text = "KickPlr"
  85. KickPlr.TextColor3 = Color3.new(1, 1, 1)
  86. KickPlr.TextScaled = true
  87. KickPlr.TextSize = 14
  88. KickPlr.TextWrapped = true
  89. KickPlr.MouseButton1Click:connect(function()
  90. game.Players[Name.Text].Backpack.pt:Destroy()
  91. end)
  92.  
  93. local ChestPlr = Instance.new("TextButton")
  94. ChestPlr.Name = "ChestPlr"
  95. ChestPlr.Parent = FrameOne
  96. ChestPlr.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  97. ChestPlr.BorderColor3 = Color3.new(0, 0, 0)
  98. ChestPlr.Position = UDim2.new(0.325633764, 0, 0.0617916696, 30)
  99. ChestPlr.Size = UDim2.new(0, 50, 0, 25)
  100. ChestPlr.Font = Enum.Font.Arial
  101. ChestPlr.FontSize = Enum.FontSize.Size14
  102. ChestPlr.Text = "ChestPlr"
  103. ChestPlr.TextColor3 = Color3.new(1, 1, 1)
  104. ChestPlr.TextScaled = true
  105. ChestPlr.TextSize = 14
  106. ChestPlr.TextWrapped = true
  107. ChestPlr.MouseButton1Click:connect(function()
  108. for _,chest in pairs(workspace:GetChildren()) do
  109.  if chest.Name == "chest" then
  110. wait(0.1)
  111. game.Players[Name.Text].Character.HumanoidRootPart.CFrame = chest:GetModelCFrame()
  112. end
  113. end
  114. end)
  115.  
  116. local GodPlr = Instance.new("TextButton")
  117. GodPlr.Name = "GodPlr"
  118. GodPlr.Parent = FrameOne
  119. GodPlr.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  120. GodPlr.BorderColor3 = Color3.new(0, 0, 0)
  121. GodPlr.Position = UDim2.new(0.0199999996, 0, 0.21829699, 30)
  122. GodPlr.Size = UDim2.new(0, 50, 0, 25)
  123. GodPlr.Font = Enum.Font.Arial
  124. GodPlr.FontSize = Enum.FontSize.Size14
  125. GodPlr.Text = " GodPlr "
  126. GodPlr.TextColor3 = Color3.new(1, 1, 1)
  127. GodPlr.TextScaled = true
  128. GodPlr.TextSize = 14
  129. GodPlr.TextWrapped = true
  130. GodPlr.MouseButton1Click:connect(function()
  131. game.Players[Name.Text].Character.Humanoid.MaxHealth = math.huge
  132. end)
  133.  
  134. local KickAll = Instance.new("TextButton")
  135. KickAll.Name = "KickAll"
  136. KickAll.Parent = FrameOne
  137. KickAll.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  138. KickAll.BorderColor3 = Color3.new(0, 0, 0)
  139. KickAll.Position = UDim2.new(0.172260851, 0, 0.216026217, 30)
  140. KickAll.Size = UDim2.new(0, 50, 0, 25)
  141. KickAll.Font = Enum.Font.Arial
  142. KickAll.FontSize = Enum.FontSize.Size14
  143. KickAll.Text = "  KickAll  "
  144. KickAll.TextColor3 = Color3.new(1, 1, 1)
  145. KickAll.TextScaled = true
  146. KickAll.TextSize = 14
  147. KickAll.TextWrapped = true
  148. KickAll.MouseButton1Click:connect(function()
  149. for i, v in pairs(game.Players:GetChildren()) do
  150. if v.Name == game.Players.LocalPlayer.Name then else
  151. v.Backpack.pt:Destroy()
  152. end
  153. end
  154. end)
  155.  
  156. local Bring = Instance.new("TextButton")
  157. Bring.Name = "Bring"
  158. Bring.Parent = FrameOne
  159. Bring.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  160. Bring.BorderColor3 = Color3.new(0, 0, 0)
  161. Bring.Position = UDim2.new(0.327617347, 0, 0.372844547, 30)
  162. Bring.Size = UDim2.new(0, 50, 0, 25)
  163. Bring.Font = Enum.Font.Arial
  164. Bring.FontSize = Enum.FontSize.Size14
  165. Bring.Text = "Bring"
  166. Bring.TextColor3 = Color3.new(1, 1, 1)
  167. Bring.TextSize = 14
  168. Bring.TextWrapped = true
  169. Bring.MouseButton1Click:connect(function()
  170. game.Players[Name.Text].Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  171. end)
  172.  
  173. local StealDF = Instance.new("TextButton")
  174. StealDF.Name = "StealDF"
  175. StealDF.Parent = FrameOne
  176. StealDF.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  177. StealDF.BorderColor3 = Color3.new(0, 0, 0)
  178. StealDF.Position = UDim2.new(0.172260866, 0, 0.373120636, 30)
  179. StealDF.Size = UDim2.new(0, 50, 0, 25)
  180. StealDF.Font = Enum.Font.Arial
  181. StealDF.FontSize = Enum.FontSize.Size14
  182. StealDF.Text = "StealDF"
  183. StealDF.TextColor3 = Color3.new(1, 1, 1)
  184. StealDF.TextSize = 14
  185. StealDF.TextWrapped = true
  186. StealDF.MouseButton1Click:connect(function()
  187. local a = game.Players[Name.Text].Backpack:GetChildren()
  188. for i,v in pairs(a) do
  189. v:Clone().Parent = game.Players.LocalPlayer.Backpack
  190. end
  191. end)
  192.  
  193. local TpDF = Instance.new("TextButton")
  194. TpDF.Name = "TpDF"
  195. TpDF.Parent = FrameOne
  196. TpDF.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  197. TpDF.BorderColor3 = Color3.new(0, 0, 0)
  198. TpDF.Position = UDim2.new(0.0187667552, 0, 0.373737365, 30)
  199. TpDF.Size = UDim2.new(0, 50, 0, 25)
  200. TpDF.ZIndex = 3
  201. TpDF.Font = Enum.Font.Arial
  202. TpDF.FontSize = Enum.FontSize.Size14
  203. TpDF.Text = "TpDF"
  204. TpDF.TextColor3 = Color3.new(1, 1, 1)
  205. TpDF.TextSize = 14
  206. TpDF.TextWrapped = true
  207. TpDF.MouseButton1Click:connect(function()
  208. check = function(x)
  209.     for _,v in next, x:GetChildren() do
  210.         if v:IsA("Tool") then
  211.             if not v.Parent:FindFirstChild("Humanoid") then
  212.                 v.TextureId = "";
  213.                 v.Parent = game.Players.LocalPlayer.Backpack
  214.             end
  215.         end
  216.         check(v)
  217.     end
  218. end
  219. check(workspace)
  220. end)
  221.  
  222. local GoTo = Instance.new("TextButton")
  223. GoTo.Name = "GoTo"
  224. GoTo.Parent = FrameOne
  225. GoTo.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  226. GoTo.BorderColor3 = Color3.new(0, 0, 0)
  227. GoTo.Position = UDim2.new(0.327077746, 0, 0.217171714, 30)
  228. GoTo.Size = UDim2.new(0, 50, 0, 25)
  229. GoTo.ZIndex = 4
  230. GoTo.Font = Enum.Font.Arial
  231. GoTo.FontSize = Enum.FontSize.Size14
  232. GoTo.Text = "GoTo"
  233. GoTo.TextColor3 = Color3.new(1, 1, 1)
  234. GoTo.TextSize = 14
  235. GoTo.TextWrapped = true
  236. GoTo.MouseButton1Click:connect(function()
  237. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[Name.Text].Character.HumanoidRootPart.CFrame
  238. end)
  239.  
  240. local Exit = Instance.new("TextButton")
  241. Exit.Name = "Exit"
  242. Exit.Parent = FrameOne
  243. Exit.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  244. Exit.BorderColor3 = Color3.new(0, 0, 0)
  245. Exit.Position = UDim2.new(0.0160857905, 0, 0.676767647, 30)
  246. Exit.Size = UDim2.new(0.308310986, 50, -0.0151515156, 25)
  247. Exit.ZIndex = 4
  248. Exit.Font = Enum.Font.Arial
  249. Exit.FontSize = Enum.FontSize.Size14
  250. Exit.Text = "Exit"
  251. Exit.TextColor3 = Color3.new(1, 1, 1)
  252. Exit.TextScaled = true
  253. Exit.TextSize = 14
  254. Exit.TextWrapped = true
  255. Exit.MouseButton1Click:connect(function()
  256. OnePieceOceanVoyageGUI:Destroy()
  257. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement