Advertisement
AnredYT

steve's one piece gui

Mar 30th, 2020
9,576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.43 KB | None | 0 0
  1. -- Script made by Fri3nd Team
  2. local main = Instance.new("ScreenGui")
  3. local noidungchinh = Instance.new("Frame")
  4. local text = Instance.new("TextLabel")
  5. local exit = Instance.new("TextButton")
  6. local opengui = Instance.new("TextButton")
  7. local openmain = Instance.new("Frame")
  8. local open = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. main.Name = "main"
  13. main.Parent = game.CoreGui
  14.  
  15. noidungchinh.Name = "noidungchinh"
  16. noidungchinh.Parent = main
  17. noidungchinh.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  18. noidungchinh.Position = UDim2.new(0.216494843, 0, 0.197211161, 0)
  19. noidungchinh.Size = UDim2.new(0, 458, 0, 274)
  20. noidungchinh.Visible = false
  21. noidungchinh.Active = true
  22. noidungchinh.Draggable = true
  23.  
  24. text.Name = "text"
  25. text.Parent = noidungchinh
  26. text.BackgroundColor3 = Color3.fromRGB(249, 0, 124)
  27. text.Size = UDim2.new(0, 458, 0, 63)
  28. text.Font = Enum.Font.SciFi
  29. text.Text = "Hack Steve's One Piece"
  30. text.TextColor3 = Color3.fromRGB(0, 0, 0)
  31. text.TextSize = 14.000
  32.  
  33. exit.Name = "exit"
  34. exit.Parent = noidungchinh
  35. exit.BackgroundColor3 = Color3.fromRGB(250, 0, 125)
  36. exit.Position = UDim2.new(0.851528406, 0, 0, 0)
  37. exit.Size = UDim2.new(0, 68, 0, 63)
  38. exit.Font = Enum.Font.GothamBlack
  39. exit.Text = "X"
  40. exit.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. exit.TextSize = 14.000
  42. exit.MouseButton1Down:connect(function()
  43. noidungchinh.Visible = false
  44. openmain.Visible = true
  45. end)
  46.  
  47. opengui.Name = "opengui"
  48. opengui.Parent = noidungchinh
  49. opengui.BackgroundColor3 = Color3.fromRGB(0, 85, 0)
  50. opengui.Position = UDim2.new(0.320960701, 0, 0.463503659, 0)
  51. opengui.Size = UDim2.new(0, 164, 0, 50)
  52. opengui.Font = Enum.Font.Highway
  53. opengui.Text = "Open GUI <3"
  54. opengui.TextColor3 = Color3.fromRGB(0, 0, 0)
  55. opengui.TextSize = 14.000
  56. opengui.MouseButton1Down:connect(function()
  57. loadstring(game:HttpGet("https://pastebin.com/raw/RMLYCk3q",true))()
  58. end)
  59.  
  60. openmain.Name = "openmain"
  61. openmain.Parent = main
  62. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  63. openmain.Position = UDim2.new(0, 0, 0.334661365, 0)
  64. openmain.Size = UDim2.new(0, 99, 0, 51)
  65. openmain.Active = true
  66. openmain.Draggable = true
  67.  
  68. open.Name = "open"
  69. open.Parent = openmain
  70. open.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  71. open.Size = UDim2.new(0, 99, 0, 50)
  72. open.Font = Enum.Font.GothamBold
  73. open.Text = "OPEN"
  74. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  75. open.TextSize = 14.000
  76. open.MouseButton1Down:connect(function()
  77. openmain.Visible = false
  78. noidungchinh.Visible = true
  79. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement