thi2004

ONE PIECE: PIRATE'S QUEST 3 GUI

Sep 23rd, 2018
691
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.73 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Gamepass = Instance.new("TextButton")
  7. local Teleports = Instance.new("TextButton")
  8. local Tele = Instance.new("Frame")
  9. local TeleChest = Instance.new("TextButton")
  10. local TeleToDF = Instance.new("TextButton")
  11. local TeleToMerchant = Instance.new("TextButton")
  12. local Own1 = Instance.new("TextLabel")
  13. local Own2 = Instance.new("TextLabel")
  14. local Clicktp = Instance.new("TextButton")
  15. local Tilte = Instance.new("TextLabel")
  16. local Close = Instance.new("TextButton")
  17. local Credits = Instance.new("TextLabel")
  18. local Opengui = Instance.new("Frame")
  19. local Open = Instance.new("TextButton")
  20. --Properties:
  21. ScreenGui.Parent = game.CoreGui
  22.  
  23. Main.Name = "Main"
  24. Main.Parent = ScreenGui
  25. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  26. Main.Position = UDim2.new(0.0947666243, 0, 0.12350598, 0)
  27. Main.Size = UDim2.new(0, 345, 0, 329)
  28. Main.Visible = false
  29. Main.Style = Enum.FrameStyle.DropShadow
  30. Main.Active = true
  31. Main.Draggable = true
  32.  
  33. Gamepass.Name = "Gamepass"
  34. Gamepass.Parent = Main
  35. Gamepass.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  36. Gamepass.Position = UDim2.new(0.194202885, 0, 0.130699113, 0)
  37. Gamepass.Size = UDim2.new(0, 200, 0, 50)
  38. Gamepass.Font = Enum.Font.SourceSans
  39. Gamepass.Text = "Gamepass Cosmetic"
  40. Gamepass.TextColor3 = Color3.new(1, 0, 0)
  41. Gamepass.TextSize = 14
  42. Gamepass.MouseButton1Down:connect(function()
  43. game.Players.LocalPlayer.Backpack.ServerTraits.Cosmo.Parent = game.Players.LocalPlayer.PlayerGui
  44. end)
  45.  
  46. Teleports.Name = "Teleports"
  47. Teleports.Parent = Main
  48. Teleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  49. Teleports.Position = UDim2.new(0.194202885, 0, 0.370820701, 0)
  50. Teleports.Size = UDim2.new(0, 200, 0, 50)
  51. Teleports.Font = Enum.Font.SourceSans
  52. Teleports.Text = "Teleports"
  53. Teleports.TextColor3 = Color3.new(1, 0, 0)
  54. Teleports.TextSize = 14
  55. Teleports.MouseButton1Down:connect(function()
  56. Tele.Visible = true
  57. end)
  58.  
  59. Tele.Name = "Tele"
  60. Tele.Parent = Teleports
  61. Tele.BackgroundColor3 = Color3.new(1, 1, 1)
  62. Tele.Position = UDim2.new(1.36500001, 0, -2.48000026, 0)
  63. Tele.Size = UDim2.new(0, 317, 0, 329)
  64. Tele.Visible = false
  65. Tele.Style = Enum.FrameStyle.DropShadow
  66. Tele.Active = true
  67. Tele.Draggable = true
  68.  
  69. TeleChest.Name = "Tele Chest"
  70. TeleChest.Parent = Tele
  71. TeleChest.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  72. TeleChest.Position = UDim2.new(0.192429021, 0, 0.130699098, 0)
  73. TeleChest.Size = UDim2.new(0, 200, 0, 50)
  74. TeleChest.Font = Enum.Font.SourceSans
  75. TeleChest.Text = "Teleport Chest"
  76. TeleChest.TextColor3 = Color3.new(1, 0, 0)
  77. TeleChest.TextSize = 14
  78. TeleChest.MouseButton1Down:connect(function()
  79. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  80.  
  81. for i,v in pairs(game.Workspace:GetChildren()) do
  82. if v.name == "Model" then
  83. if v:FindFirstChild("Lid") then
  84. for _, b in pairs(v.Lid:GetChildren()) do
  85. if b.name == "Touch" then
  86. b.CFrame = plr.CFrame
  87. end
  88. end
  89. end
  90. end
  91. end
  92. end)
  93.  
  94. TeleToDF.Name = "Tele To DF"
  95. TeleToDF.Parent = Tele
  96. TeleToDF.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  97. TeleToDF.Position = UDim2.new(0.192429021, 0, 0.364741653, 0)
  98. TeleToDF.Size = UDim2.new(0, 200, 0, 50)
  99. TeleToDF.Font = Enum.Font.SourceSans
  100. TeleToDF.Text = "Teleport To DF"
  101. TeleToDF.TextColor3 = Color3.new(1, 0, 0)
  102. TeleToDF.TextSize = 14
  103. TeleToDF.MouseButton1Down:connect(function()
  104. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  105.  
  106. for i,v in pairs(game.Workspace:GetChildren()) do
  107. if v:FindFirstChild 'Handle' and v:FindFirstChild 'ClickDetector' then
  108. for _, f in pairs(v:GetChildren()) do
  109. if f.name == "Handle" then
  110. plr.CFrame = f.CFrame
  111. end
  112. end
  113. end
  114. end
  115. end)
  116.  
  117. TeleToMerchant.Name = "Tele To Merchant"
  118. TeleToMerchant.Parent = Tele
  119. TeleToMerchant.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  120. TeleToMerchant.Position = UDim2.new(0.192429021, 0, 0.607902765, 0)
  121. TeleToMerchant.Size = UDim2.new(0, 200, 0, 50)
  122. TeleToMerchant.Font = Enum.Font.SourceSans
  123. TeleToMerchant.Text = "Teleport To Merchant"
  124. TeleToMerchant.TextColor3 = Color3.new(1, 0, 0)
  125. TeleToMerchant.TextSize = 14
  126. TeleToMerchant.MouseButton1Down:connect(function()
  127. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  128.  
  129. for i,v in pairs(game.Workspace:GetChildren()) do
  130. if v:FindFirstChild 'Spot' and v:FindFirstChild 'Part' then
  131. for _, f in pairs(v:GetChildren()) do
  132. if f.name == "Spot" then
  133. plr.CFrame = f.CFrame
  134. end
  135. end
  136. end
  137. end
  138. end)
  139.  
  140. Own1.Name = "Own1"
  141. Own1.Parent = Tele
  142. Own1.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  143. Own1.Position = UDim2.new(-0.0157728698, 0, -0.00607902743, 0)
  144. Own1.Size = UDim2.new(0, 311, 0, 21)
  145. Own1.Font = Enum.Font.SourceSans
  146. Own1.Text = "Scripts Belong To V3rmillion"
  147. Own1.TextColor3 = Color3.new(1, 0, 0)
  148. Own1.TextSize = 14
  149.  
  150. Own2.Name = "Own2"
  151. Own2.Parent = Tele
  152. Own2.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  153. Own2.Position = UDim2.new(-0.0157728698, 0, 0.93617022, 0)
  154. Own2.Size = UDim2.new(0, 311, 0, 21)
  155. Own2.Font = Enum.Font.SourceSans
  156. Own2.Text = "Scripts Belong To V3rmillion"
  157. Own2.TextColor3 = Color3.new(1, 0, 0)
  158. Own2.TextSize = 14
  159.  
  160. Clicktp.Name = "Click tp"
  161. Clicktp.Parent = Main
  162. Clicktp.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  163. Clicktp.Position = UDim2.new(0.194202885, 0, 0.610942245, 0)
  164. Clicktp.Size = UDim2.new(0, 200, 0, 50)
  165. Clicktp.Font = Enum.Font.SourceSans
  166. Clicktp.Text = "Give Click Tp Tool"
  167. Clicktp.TextColor3 = Color3.new(1, 0, 0)
  168. Clicktp.TextSize = 14
  169. Clicktp.MouseButton1Down:connect(function()
  170. mouse = game.Players.LocalPlayer:GetMouse()
  171. tool = Instance.new("Tool")
  172. tool.RequiresHandle = false
  173. tool.Name = "Click Teleport"
  174. tool.Activated:connect(function()
  175. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  176. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  177. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  178. end)
  179. tool.Parent = game.Players.LocalPlayer.Backpack
  180. tool.ToolTip = "CLICK_TP"
  181. end)
  182.  
  183. Tilte.Name = "Tilte"
  184. Tilte.Parent = Main
  185. Tilte.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  186. Tilte.Position = UDim2.new(-0.00579710305, 0, -0.0121580549, 0)
  187. Tilte.Size = UDim2.new(0, 312, 0, 35)
  188. Tilte.Font = Enum.Font.SourceSans
  189. Tilte.Text = "ONE PIECE: PIRATE'S QUEST 3 GUI"
  190. Tilte.TextColor3 = Color3.new(1, 0, 0)
  191. Tilte.TextSize = 14
  192.  
  193. Close.Name = "Close"
  194. Close.Parent = Main
  195. Close.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  196. Close.Position = UDim2.new(0.942029059, 0, -0.0121580558, 0)
  197. Close.Size = UDim2.new(0, 23, 0, 35)
  198. Close.Font = Enum.Font.SourceSans
  199. Close.Text = "X"
  200. Close.TextColor3 = Color3.new(1, 0, 0)
  201. Close.TextSize = 14
  202. Close.MouseButton1Down:connect(function()
  203. Main.Visible = false
  204. Tele.Visible = false
  205. Opengui.Visible = true
  206. end)
  207.  
  208. Credits.Name = "Credits"
  209. Credits.Parent = Main
  210. Credits.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  211. Credits.Position = UDim2.new(-0.00579710305, 0, 0.890577495, 0)
  212. Credits.Size = UDim2.new(0, 335, 0, 35)
  213. Credits.Font = Enum.Font.SourceSans
  214. Credits.Text = "Gui Make By ClarkShadow"
  215. Credits.TextColor3 = Color3.new(1, 0, 0)
  216. Credits.TextSize = 14
  217.  
  218. Opengui.Name = "Opengui"
  219. Opengui.Parent = ScreenGui
  220. Opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  221. Opengui.Position = UDim2.new(-0.00990098994, 0, 0.45418328, 0)
  222. Opengui.Size = UDim2.new(0, 74, 0, 28)
  223. Opengui.Style = Enum.FrameStyle.DropShadow
  224. Opengui.Active = true
  225. Opengui.Draggable = true
  226.  
  227. Open.Name = "Open"
  228. Open.Parent = Opengui
  229. Open.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  230. Open.Position = UDim2.new(-0.135135114, 0, -0.107142836, 0)
  231. Open.Size = UDim2.new(0, 71, 0, 14)
  232. Open.Font = Enum.Font.SourceSans
  233. Open.Text = "Open"
  234. Open.TextColor3 = Color3.new(1, 0, 0)
  235. Open.TextSize = 14
  236. Open.MouseButton1Down:connect(function()
  237. Main.Visible = true
  238. Opengui.Visible = false
  239. end)
  240. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment