Advertisement
lol375090

lol

Mar 13th, 2016
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. local text = "yo motherfuckers"
  2. local function create()
  3. local base = Instance.new("ScreenGui")
  4. local NewGuiPart2 = Instance.new("TextLabel")
  5. NewGuiPart2.BackgroundTransparency = 1
  6. NewGuiPart2.Position = UDim2.new(0, 0, 0, 250)
  7. NewGuiPart2.Rotation = 45
  8. NewGuiPart2.Size = UDim2.new(1, 0, 0, 100)
  9. NewGuiPart2.Font = Enum.Font.SourceSansLight
  10. NewGuiPart2.FontSize = Enum.FontSize.Size96
  11. NewGuiPart2.Text = text
  12. NewGuiPart2.TextColor3 = Color3.new(1, 1, 1)
  13. NewGuiPart2.TextStrokeTransparency = 0
  14. NewGuiPart2.Parent = base
  15. return base
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement