SebTDZ

Untitled

Jun 25th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. local GuiScreen = Instance.new("ScreenGui", owner.PlayerGui)
  2. GuiScreen.Name = "Terminal"
  3. local GuiFrame = Instance.new("Frame", GuiScreen)
  4. GuiFrame.Size = UDim2.new(1, 0, 1, 0)
  5. GuiFrame.BackgroundTransparency = 0.2
  6. GuiFrame.BackgroundColor3 = Color3.new(-10, -10, -10)
  7.  
  8. local Text1 = Instance.new("TextLabel", GuiFrame)
  9. Text1.Text = "a"
  10. Text1.BackgroundTransparency = 1
  11. Text1.BorderSizePixel = 0
  12. Text1.Size = UDim2.new(1, 0, 0.1, 0)
  13. Text1.Font = Enum.Font.SciFi
  14. Text1.TextColor3 = Color3.new(0, 1, 0)
  15. Text1.TextSize = 50
  16. Text1.TextXAlignment = Enum.TextXAlignment.Left
Advertisement
Add Comment
Please, Sign In to add comment