Advertisement
PixelTactics101

GUI Test 1

Mar 31st, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.61 KB | None | 0 0
  1. -- Instances:
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local RageMakerv12 = Instance.new("TextButton")
  7. local close = Instance.new("TextButton")
  8. local openmain = Instance.new("Frame")
  9. local open = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(60, 203, 137)
  18. main.Position = UDim2.new(0.391515136, 0, 0.303693563, 0)
  19. main.Size = UDim2.new(0, 427, 0, 287)
  20. main.Visible = false
  21. main.Active = true
  22. main.Draggable = true
  23.  
  24.  
  25. title.Name = "title"
  26. title.Parent = main
  27. title.BackgroundColor3 = Color3.fromRGB(73, 200, 64)
  28. title.Size = UDim2.new(0, 427, 0, 36)
  29. title.Font = Enum.Font.SciFi
  30. title.Text = "PixelTactics's RageSpreader GUI"
  31. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  32. title.TextSize = 14.000
  33. title.TextWrapped = true
  34.  
  35. RageMakerv12.Name = "RageMaker v1.2"
  36. RageMakerv12.Parent = main
  37. RageMakerv12.BackgroundColor3 = Color3.fromRGB(227, 10, 39)
  38. RageMakerv12.Position = UDim2.new(0.325526923, 0, 0.2055749, 0)
  39. RageMakerv12.Size = UDim2.new(0, 148, 0, 34)
  40. RageMakerv12.Font = Enum.Font.SciFi
  41. RageMakerv12.Text = "RageMaker v1.2"
  42. RageMakerv12.TextColor3 = Color3.fromRGB(114, 217, 35)
  43. RageMakerv12.TextScaled = true
  44. RageMakerv12.TextSize = 14.000
  45. RageMakerv12.TextStrokeColor3 = Color3.fromRGB(103, 177, 19)
  46. RageMakerv12.TextWrapped = true
  47. RageMakerv12.MouseButton1Down:connect(function()
  48. loadstring(game:HttpGet("https://pastebin.com/X1RnKpB1", true)()
  49. end)
  50.  
  51. close.Name = "close"
  52. close.Parent = main
  53. close.BackgroundColor3 = Color3.fromRGB(6, 220, 213)
  54. close.Position = UDim2.new(0.908665121, 0, 0, 0)
  55. close.Size = UDim2.new(0, 39, 0, 36)
  56. close.Font = Enum.Font.SciFi
  57. close.Text = "X"
  58. close.TextColor3 = Color3.fromRGB(255, 0, 4)
  59. close.TextScaled = true
  60. close.TextSize = 14.000
  61. close.TextStrokeColor3 = Color3.fromRGB(168, 71, 15)
  62. close.TextStrokeTransparency = 0.000
  63. close.TextWrapped = true
  64.  
  65. openmain.Name = "openmain"
  66. openmain.Parent = ScreenGui
  67. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  68. openmain.Position = UDim2.new(0.0066666659, 0, 0.538987696, 0)
  69. openmain.Size = UDim2.new(0, 147, 0, 41)
  70. openmain.Active = true
  71. openmain.Draggable = true
  72.  
  73. open.Name = "open"
  74. open.Parent = openmain
  75. open.BackgroundColor3 = Color3.fromRGB(25, 213, 255)
  76. open.BorderColor3 = Color3.fromRGB(87, 135, 170)
  77. open.Size = UDim2.new(0, 147, 0, 41)
  78. open.Font = Enum.Font.SciFi
  79. open.Text = "Open"
  80. open.TextColor3 = Color3.fromRGB(0, 17, 177)
  81. open.TextScaled = true
  82. open.TextSize = 14.000
  83. open.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement