Advertisement
Guest User

One Piece Open Sea by Potato

a guest
Nov 13th, 2019
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. local OnePieceOpenSea = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local BeautyA = Instance.new("Frame")
  4. local TextBox = Instance.new("TextBox")
  5. local Credit = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local Close = Instance.new("TextButton")
  8. local TextButton = Instance.new("TextButton")
  9. local TextButton_2 = Instance.new("TextButton")
  10. local OpenFrame = Instance.new("Frame")
  11. local Open = Instance.new("TextButton")
  12. --Properties:
  13. OnePieceOpenSea.Name = "One Piece Open Sea"
  14. OnePieceOpenSea.Parent = game.CoreGui
  15.  
  16. Main.Name = "Main"
  17. Main.Parent = OnePieceOpenSea
  18. Main.Active = true
  19. Main.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  20. Main.BorderSizePixel = 0
  21. Main.Position = UDim2.new(0.198598132, 0, 0.344457686, 0)
  22. Main.Size = UDim2.new(0, 214, 0, 329)
  23. Main.Visible = false
  24. Main.Draggable = true
  25.  
  26. BeautyA.Name = "Beauty A"
  27. BeautyA.Parent = Main
  28. BeautyA.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  29. BeautyA.Size = UDim2.new(0, 214, 0, 50)
  30.  
  31. TextBox.Parent = BeautyA
  32. TextBox.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  33. TextBox.Size = UDim2.new(0, 214, 0, 50)
  34. TextBox.Font = Enum.Font.SourceSans
  35. TextBox.Text = "OPEN TRADE BELI"
  36. TextBox.TextColor3 = Color3.new(0, 0, 0)
  37. TextBox.TextSize = 14
  38.  
  39. Credit.Name = "Credit"
  40. Credit.Parent = Main
  41. Credit.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  42. Credit.Position = UDim2.new(0, 0, 0.860869527, 0)
  43. Credit.Size = UDim2.new(0, 214, 0, 48)
  44.  
  45. TextLabel.Parent = Credit
  46. TextLabel.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  47. TextLabel.Size = UDim2.new(0, 214, 0, 50)
  48. TextLabel.Font = Enum.Font.SourceSans
  49. TextLabel.Text = "Make for fun by Potato Troll"
  50. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  51. TextLabel.TextSize = 14
  52.  
  53. Close.Name = "Close"
  54. Close.Parent = Main
  55. Close.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  56. Close.Position = UDim2.new(-0.170560747, 0, 0, 0)
  57. Close.Size = UDim2.new(0, 36, 0, 49)
  58. Close.Font = Enum.Font.SourceSans
  59. Close.Text = "X"
  60. Close.TextColor3 = Color3.new(0, 0, 0)
  61. Close.TextSize = 60
  62. Close.MouseButton1Down:connect(function()
  63. OpenFrame.Visible = true
  64. Main.Visible = false
  65. end)
  66.  
  67. TextButton.Parent = Main
  68. TextButton.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  69. TextButton.Position = UDim2.new(-0.00233644247, 0, 0.567284107, 0)
  70. TextButton.Size = UDim2.new(0, 214, 0, 50)
  71. TextButton.Font = Enum.Font.Cartoon
  72. TextButton.Text = "Close Trade"
  73. TextButton.TextColor3 = Color3.new(0, 0, 0)
  74. TextButton.TextSize = 14
  75. TextButton.MouseButton1Down:connect(function()
  76. game.Players.LocalPlayer.PlayerGui.HUD.Trade.Open.Value = false
  77. end)
  78.  
  79. TextButton_2.Parent = Main
  80. TextButton_2.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  81. TextButton_2.Position = UDim2.new(-0.00233644247, 0, 0.189793915, 0)
  82. TextButton_2.Size = UDim2.new(0, 214, 0, 50)
  83. TextButton_2.Font = Enum.Font.Cartoon
  84. TextButton_2.Text = "Open trade"
  85. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  86. TextButton_2.TextSize = 14
  87. TextButton_2.MouseButton1Down:connect(function()
  88. game.Players.LocalPlayer.PlayerGui.HUD.Trade.Open.Value = true
  89. end)
  90.  
  91. OpenFrame.Name = "OpenFrame"
  92. OpenFrame.Parent = OnePieceOpenSea
  93. OpenFrame.Active = true
  94. OpenFrame.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  95. OpenFrame.Position = UDim2.new(0, 0, 0.539928496, 0)
  96. OpenFrame.Size = UDim2.new(0, 111, 0, 43)
  97.  
  98. Open.Name = "Open"
  99. Open.Parent = OpenFrame
  100. Open.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  101. Open.Position = UDim2.new(-0.00145240303, 0, 0, 0)
  102. Open.Size = UDim2.new(0, 111, 0, 42)
  103. Open.Font = Enum.Font.SourceSans
  104. Open.Text = "OPEN"
  105. Open.TextColor3 = Color3.new(0, 0, 0)
  106. Open.TextSize = 14
  107. Open.MouseButton1Down:connect(function()
  108. Main.Visible = true
  109. OpenFrame.Visible = false
  110. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement