Advertisement
RandomNewbieScripter

Untitled

Aug 23rd, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.88 KB | None | 0 0
  1. local h = Instance.new('Hint', workspace)
  2. h.Text = ""
  3.  
  4. p = game.Players.LocalPlayer
  5. local a1 = Instance.new("ScreenGui")
  6. local a2 = Instance.new("TextBox")
  7. local a3 = Instance.new("TextBox")
  8. a1.Parent = p.PlayerGui
  9. a2.Parent = a1
  10. a2.BackgroundColor3 = Color3.new(0.756863, 0.705882, 1)
  11. a2.Position = UDim2.new(0, 74, 0, 374)
  12. a2.Size = UDim2.new(0, 176, 0, 50)
  13. a2.Font = Enum.Font.Highway
  14. a2.FontSize = Enum.FontSize.Size28
  15. a2.Text = "Type text you want here"
  16. a2.TextSize = 10
  17. a2.TextWrapped = true
  18. a2.Visible = true
  19. a3.Parent = a1
  20. a3.BackgroundColor3 = Color3.new(1, 1, 1)
  21. a3.BackgroundTransparency = 1
  22. a3.Size = UDim2.new(0, 800, 0, 600)
  23. a3.Font = Enum.Font.SourceSans
  24. a3.FontSize = Enum.FontSize.Size96
  25. a3.Text = "same"
  26. a3.TextColor3 = Color3.new(0.956863, 0.345098, 0.0588235)
  27. a3.TextSize = 100
  28. a3.TextWrapped = true
  29. a3.Changed:connect(function()
  30.     a3.Text = h.Text
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement