Sinderblock

print gui

May 3rd, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Tutorial = Instance.new("ScreenGui")
  4. local PrintGUI = Instance.new("Frame")
  5. local drag = Instance.new("Frame")
  6. local drag2 = Instance.new("Frame")
  7. local printbtn = Instance.new("TextButton")
  8. local design = Instance.new("Frame")
  9. local printtxt = Instance.new("TextBox")
  10. local title = Instance.new("TextLabel")
  11. local checkfe = Instance.new("TextButton")
  12. local exit = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. Tutorial.Name = "Tutorial"
  17. Tutorial.Parent = game.CoreGui
  18.  
  19. PrintGUI.Name = "PrintGUI"
  20. PrintGUI.Parent = Tutorial
  21. PrintGUI.BackgroundColor3 = Color3.new(0.368627, 0.368627, 0.368627)
  22. PrintGUI.BorderSizePixel = 0
  23. PrintGUI.Position = UDim2.new(0.358543426, 0, 0.217970043, 0)
  24. PrintGUI.Size = UDim2.new(0, 385, 0, 322)
  25. PrintGUI.Active = true
  26. PrintGUI.Draggable = true
  27.  
  28. drag.Name = "drag"
  29. drag.Parent = PrintGUI
  30. drag.BackgroundColor3 = Color3.new(0.898039, 0.6, 0)
  31. drag.BorderSizePixel = 0
  32. drag.Size = UDim2.new(0, 385, 0, 18)
  33.  
  34. drag2.Name = "drag2"
  35. drag2.Parent = PrintGUI
  36. drag2.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  37. drag2.BorderSizePixel = 0
  38. drag2.Position = UDim2.new(0, 0, 0.0559006222, 0)
  39. drag2.Size = UDim2.new(0, 385, 0, 48)
  40.  
  41. printbtn.Name = "printbtn"
  42. printbtn.Parent = PrintGUI
  43. printbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  44. printbtn.BorderSizePixel = 0
  45. printbtn.Position = UDim2.new(0.236363634, 0, 0.524844706, 0)
  46. printbtn.Size = UDim2.new(0, 200, 0, 50)
  47. printbtn.Font = Enum.Font.SciFi
  48. printbtn.Text = "Print"
  49. printbtn.TextColor3 = Color3.new(0, 0, 0)
  50. printbtn.TextScaled = true
  51. printbtn.TextSize = 14
  52. printbtn.TextWrapped = true
  53. printbtn.MouseButton1Click:connect(function()
  54. print(printtxt.Text)
  55. end)
  56.  
  57. design.Name = "design"
  58. design.Parent = printbtn
  59. design.BackgroundColor3 = Color3.new(1, 1, 1)
  60. design.BorderSizePixel = 0
  61. design.Size = UDim2.new(0, 6, 0, 50)
  62. design.Style = Enum.FrameStyle.ChatBlue
  63.  
  64. printtxt.Name = "printtxt"
  65. printtxt.Parent = PrintGUI
  66. printtxt.BackgroundColor3 = Color3.new(1, 1, 1)
  67. printtxt.BorderSizePixel = 0
  68. printtxt.Position = UDim2.new(0.132467538, 0, 0.316770196, 0)
  69. printtxt.Size = UDim2.new(0, 280, 0, 50)
  70. printtxt.Font = Enum.Font.Cartoon
  71. printtxt.MultiLine = true
  72. printtxt.Text = "HI"
  73. printtxt.TextColor3 = Color3.new(0, 0, 0)
  74. printtxt.TextSize = 20
  75. printtxt.TextWrapped = true
  76.  
  77. title.Name = "title"
  78. title.Parent = PrintGUI
  79. title.BackgroundColor3 = Color3.new(1, 1, 1)
  80. title.BackgroundTransparency = 1
  81. title.BorderSizePixel = 0
  82. title.Position = UDim2.new(0.0337662324, 0, 0.0900621042, 0)
  83. title.Size = UDim2.new(0, 124, 0, 25)
  84. title.Font = Enum.Font.Fantasy
  85. title.Text = "Print GUI"
  86. title.TextColor3 = Color3.new(1, 1, 1)
  87. title.TextScaled = true
  88. title.TextSize = 14
  89. title.TextStrokeColor3 = Color3.new(0.333333, 1, 1)
  90. title.TextStrokeTransparency = 0
  91. title.TextTransparency = 1
  92. title.TextWrapped = true
  93.  
  94. checkfe.Name = "checkfe"
  95. checkfe.Parent = PrintGUI
  96. checkfe.BackgroundColor3 = Color3.new(1, 1, 1)
  97. checkfe.BorderSizePixel = 0
  98. checkfe.Position = UDim2.new(0.236363634, 0, 0.726708055, 0)
  99. checkfe.Size = UDim2.new(0, 200, 0, 50)
  100. checkfe.Style = Enum.ButtonStyle.RobloxRoundButton
  101. checkfe.Font = Enum.Font.Fantasy
  102. checkfe.Text = "Check If FE"
  103. checkfe.TextColor3 = Color3.new(0, 0, 0)
  104. checkfe.TextSize = 20
  105. checkfe.TextWrapped = true
  106. checkfe.MouseButton1Click:connect(function()
  107. print(game.Workspace.FilteringEnabled)
  108. end)
  109.  
  110. exit.Name = "exit"
  111. exit.Parent = PrintGUI
  112. exit.BackgroundColor3 = Color3.new(1, 1, 1)
  113. exit.BackgroundTransparency = 1
  114. exit.Position = UDim2.new(0.927272737, 0, 0, 0)
  115. exit.Size = UDim2.new(0, 28, 0, 18)
  116. exit.Font = Enum.Font.Cartoon
  117. exit.Text = "X"
  118. exit.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  119. exit.TextScaled = true
  120. exit.TextSize = 14
  121. exit.TextStrokeColor3 = Color3.new(1, 1, 1)
  122. exit.TextStrokeTransparency = 2
  123. exit.TextWrapped = true
  124. exit.MouseButton1Click:connect(function()
  125. Tutorial:Destroy()
  126. end)
Add Comment
Please, Sign In to add comment