Advertisement
RandomNewbieScripter

Untitled

Aug 23rd, 2017
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 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. a1.Parent = p.PlayerGui
  8. a2.Parent = a1
  9. a2.BackgroundColor3 = Color3.new(0.756863, 0.705882, 1)
  10. a2.Position = UDim2.new(0, 74, 0, 374)
  11. a2.Size = UDim2.new(0, 176, 0, 50)
  12. a2.Font = Enum.Font.Highway
  13. a2.FontSize = Enum.FontSize.Size28
  14. a2.Text = "Type text you want here"
  15. a2.TextSize = 10
  16. a2.TextWrapped = true
  17. a2.Visible = true
  18. a2.Changed:connect(function()
  19.     a2.Text = h.Text
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement