Advertisement
BlowTorch702

Roblox Better Rblx GUI 1.0 Beta

Nov 18th, 2021 (edited)
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.16 KB | None | 0 0
  1. -- Made By BlowTorch702
  2. --Official Place: https://www.roblox.com/games/3470295245/Better-Rblx-GUI-1-0
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local TextButton1 = Instance.new("TextButton")
  9. local TextButton2 = Instance.new("TextButton")
  10. local TextButton3 = Instance.new("TextButton")
  11. local close = Instance.new("TextButton")
  12. local title = Instance.new("TextLabel")
  13. local version = Instance.new("TextLabel")
  14. local openmain = Instance.new("Frame")
  15. local open = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. ScreenGui.Parent = game.CoreGui
  20.  
  21. main.Name = "main"
  22. main.Parent = ScreenGui
  23. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  24. main.BorderColor3 = Color3.fromRGB(0, 0, 255)
  25. main.BorderSizePixel = 2
  26. main.Position = UDim2.new(0.128893673, 0, 0.397476315, 0)
  27. main.Size = UDim2.new(0, 158, 0, 376)
  28. main.Visible = false
  29. main.Active = true
  30. main.Draggable = true
  31.  
  32. TextButton1.Name = "TextButton1"
  33. TextButton1.Parent = main
  34. TextButton1.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  35. TextButton1.BorderColor3 = Color3.fromRGB(0, 0, 255)
  36. TextButton1.Position = UDim2.new(-0.00311356783, 0, 0.199392572, 0)
  37. TextButton1.Size = UDim2.new(0, 76, 0, 27)
  38. TextButton1.Font = Enum.Font.SciFi
  39. TextButton1.Text = "BUTTON 1"
  40. TextButton1.TextColor3 = Color3.fromRGB(0, 0, 255)
  41. TextButton1.TextSize = 14.000
  42.  
  43. TextButton2.Name = "TextButton2"
  44. TextButton2.Parent = main
  45. TextButton2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  46. TextButton2.BorderColor3 = Color3.fromRGB(0, 0, 255)
  47. TextButton2.Position = UDim2.new(-0.00311356783, 0, 0.463504285, 0)
  48. TextButton2.Size = UDim2.new(0, 76, 0, 27)
  49. TextButton2.Font = Enum.Font.SciFi
  50. TextButton2.Text = "BUTTON 2"
  51. TextButton2.TextColor3 = Color3.fromRGB(0, 0, 255)
  52. TextButton2.TextSize = 14.000
  53.  
  54. TextButton3.Name = "TextButton3"
  55. TextButton3.Parent = main
  56. TextButton3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  57. TextButton3.BorderColor3 = Color3.fromRGB(0, 0, 255)
  58. TextButton3.Position = UDim2.new(-0.00311356783, 0, 0.730275512, 0)
  59. TextButton3.Size = UDim2.new(0, 76, 0, 27)
  60. TextButton3.Font = Enum.Font.SciFi
  61. TextButton3.Text = "BUTTON 3"
  62. TextButton3.TextColor3 = Color3.fromRGB(0, 0, 255)
  63. TextButton3.TextSize = 14.000
  64.  
  65. close.Name = "close"
  66. close.Parent = main
  67. close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  68. close.BorderColor3 = Color3.fromRGB(0, 0, 255)
  69. close.Position = UDim2.new(0.788025677, 0, -0.00063770375, 0)
  70. close.Size = UDim2.new(0, 33, 0, 33)
  71. close.Font = Enum.Font.SciFi
  72. close.Text = "X"
  73. close.TextColor3 = Color3.fromRGB(0, 0, 255)
  74. close.TextScaled = true
  75. close.TextSize = 14.000
  76. close.TextWrapped = true
  77. close.MouseButton1Down:connect(function()
  78.     main.Visible = false
  79.     openmain.Visible = true
  80. end)
  81.  
  82. title.Name = "title"
  83. title.Parent = main
  84. title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  85. title.BorderSizePixel = 0
  86. title.Position = UDim2.new(-0.0031135655, 0, 0.00350692426, 0)
  87. title.Size = UDim2.new(0, 118, 0, 31)
  88. title.Font = Enum.Font.SciFi
  89. title.Text = "BETTER RBLX GUI"
  90. title.TextColor3 = Color3.fromRGB(0, 0, 255)
  91. title.TextSize = 14.000
  92.  
  93. version.Name = "version"
  94. version.Parent = main
  95. version.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  96. version.BorderSizePixel = 0
  97. version.Position = UDim2.new(0.00394292921, 0, 0.940054715, 0)
  98. version.Size = UDim2.new(0, 157, 0, 22)
  99. version.Font = Enum.Font.SciFi
  100. version.Text = "Version: 1.0"
  101. version.TextColor3 = Color3.fromRGB(0, 0, 255)
  102. version.TextSize = 16.000
  103. version.TextWrapped = true
  104.  
  105. openmain.Name = "openmain"
  106. openmain.Parent = ScreenGui
  107. openmain.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  108. openmain.BorderSizePixel = 0
  109. openmain.Position = UDim2.new(0.0064446833, 0, 0.949526787, 0)
  110. openmain.Size = UDim2.new(0, 107, 0, 26)
  111.  
  112. open.Name = "open"
  113. open.Parent = openmain
  114. open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  115. open.BorderColor3 = Color3.fromRGB(0, 0, 255)
  116. open.Position = UDim2.new(0, 0, -0.00606712932, 0)
  117. open.Size = UDim2.new(0, 106, 0, 26)
  118. open.Font = Enum.Font.SciFi
  119. open.Text = "OPEN"
  120. open.TextColor3 = Color3.fromRGB(0, 0, 255)
  121. open.TextScaled = true
  122. open.TextSize = 14.000
  123. open.TextWrapped = true
  124. open.MouseButton1Down:connect(function()
  125.     openmain.Visible = false
  126.     main.Visible = true
  127. end)
  128.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement