Advertisement
SketchyScripts

The Plaza Gui V1

Feb 15th, 2019
1,688
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.48 KB | None | 0 0
  1. -- Credits: SketchyScripts Pastebin
  2. -- Execute with L6-L7
  3.  
  4. local ThePlazaGui = Instance.new("ScreenGui")
  5. local maingui = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local credits = Instance.new("TextLabel")
  8. local money = Instance.new("TextButton")
  9. local cargui = Instance.new("TextButton")
  10. local money2 = Instance.new("TextButton")
  11. local close = Instance.new("TextButton")
  12. local opengui = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14. --Properties:
  15. ThePlazaGui.Name = "The Plaza Gui"
  16. ThePlazaGui.Parent = game.CoreGui
  17. ThePlazaGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. maingui.Name = "maingui"
  20. maingui.Parent = ThePlazaGui
  21. maingui.Active = true
  22. maingui.BackgroundColor3 = Color3.new(1, 1, 1)
  23. maingui.BorderColor3 = Color3.new(1, 1, 1)
  24. maingui.Position = UDim2.new(0.0966325104, 0, 0.495049506, 0)
  25. maingui.Size = UDim2.new(0, 505, 0, 359)
  26. maingui.Draggable = true
  27.  
  28. title.Name = "title"
  29. title.Parent = maingui
  30. title.BackgroundColor3 = Color3.new(1, 1, 1)
  31. title.BackgroundTransparency = 1
  32. title.Position = UDim2.new(0.00594059424, 0, 0, 0)
  33. title.Size = UDim2.new(0, 499, 0, 50)
  34. title.Font = Enum.Font.GothamBold
  35. title.Text = "The Plaza Gui"
  36. title.TextColor3 = Color3.new(0, 0.666667, 1)
  37. title.TextScaled = true
  38. title.TextSize = 14
  39. title.TextWrapped = true
  40.  
  41. credits.Name = "credits"
  42. credits.Parent = maingui
  43. credits.BackgroundColor3 = Color3.new(1, 1, 1)
  44. credits.BackgroundTransparency = 1
  45. credits.Position = UDim2.new(0, 0, 0.0752089173, 0)
  46. credits.Size = UDim2.new(0, 200, 0, 50)
  47. credits.Font = Enum.Font.SourceSans
  48. credits.Text = "Credits: Sketchy Scripts (Pastebin)"
  49. credits.TextColor3 = Color3.new(0, 0, 0)
  50. credits.TextSize = 14
  51.  
  52. money.Name = "money"
  53. money.Parent = maingui
  54. money.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  55. money.BorderColor3 = Color3.new(0.333333, 0.666667, 1)
  56. money.Position = UDim2.new(0.300990105, 0, 0.194986075, 0)
  57. money.Size = UDim2.new(0, 200, 0, 50)
  58. money.Font = Enum.Font.GothamBold
  59. money.Text = "Money (Large)"
  60. money.TextColor3 = Color3.new(1, 1, 1)
  61. money.TextSize = 14
  62. money.MouseButton1Down:connect(function()
  63. local amount = 10000000000
  64. game.ReplicatedStorage.ServerStats.ChangeMoney:FireServer(amount, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
  65. end)
  66.  
  67. cargui.Name = "cargui"
  68. cargui.Parent = maingui
  69. cargui.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  70. cargui.BorderColor3 = Color3.new(0.333333, 0.666667, 1)
  71. cargui.Position = UDim2.new(0.300990105, 0, 0.428969383, 0)
  72. cargui.Size = UDim2.new(0, 200, 0, 50)
  73. cargui.Font = Enum.Font.GothamBold
  74. cargui.Text = "Plaza Gui"
  75. cargui.TextColor3 = Color3.new(1, 1, 1)
  76. cargui.TextSize = 14
  77. cargui.MouseButton1Down:connect(function()
  78. loadstring(game:GetObjects("rbxassetid://934622398")[1].Source)()
  79. end)
  80.  
  81. money2.Name = "money2"
  82. money2.Parent = maingui
  83. money2.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  84. money2.BorderColor3 = Color3.new(0.333333, 0.666667, 1)
  85. money2.Position = UDim2.new(0.300990105, 0, 0.662952662, 0)
  86. money2.Size = UDim2.new(0, 200, 0, 50)
  87. money2.Font = Enum.Font.GothamBold
  88. money2.Text = "Money (Small)"
  89. money2.TextColor3 = Color3.new(1, 1, 1)
  90. money2.TextSize = 14
  91. money2.MouseButton1Down:connect(function()
  92. local amount = 1000000
  93. game.ReplicatedStorage.ServerStats.ChangeMoney:FireServer(amount, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
  94. end)
  95.  
  96. close.Name = "close"
  97. close.Parent = maingui
  98. close.BackgroundColor3 = Color3.new(1, 1, 1)
  99. close.BackgroundTransparency = 1
  100. close.Size = UDim2.new(0, 41, 0, 34)
  101. close.Font = Enum.Font.GothamBold
  102. close.Text = "X"
  103. close.TextColor3 = Color3.new(0.333333, 0.666667, 1)
  104. close.TextScaled = true
  105. close.TextSize = 14
  106. close.TextWrapped = true
  107. close.MouseButton1Down:connect(function()
  108. maingui.Visible = false
  109. opengui.Visible = true
  110. end)
  111.  
  112. opengui.Name = "opengui"
  113. opengui.Parent = ThePlazaGui
  114. opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  115. opengui.BorderColor3 = Color3.new(1, 1, 1)
  116. opengui.Position = UDim2.new(0, 0, 0.773377359, 0)
  117. opengui.Size = UDim2.new(0, 100, 0, 35)
  118. opengui.Visible = false
  119.  
  120. open.Name = "open"
  121. open.Parent = opengui
  122. open.BackgroundColor3 = Color3.new(1, 1, 1)
  123. open.BackgroundTransparency = 1
  124. open.Size = UDim2.new(0, 100, 0, 35)
  125. open.Font = Enum.Font.GothamBold
  126. open.Text = "The Plaza Gui"
  127. open.TextColor3 = Color3.new(0.333333, 0.666667, 1)
  128. open.TextSize = 14
  129. open.MouseButton1Down:connect(function()
  130. maingui.Visible = true
  131. opengui.Visible = false
  132. end)
  133. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement