Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local h = Instance.new('Hint', workspace)
- h.Text = ""
- p = game.Players.LocalPlayer
- local a1 = Instance.new("ScreenGui")
- local a2 = Instance.new("TextBox")
- local a3 = Instance.new("TextBox")
- a1.Parent = p.PlayerGui
- a2.Parent = a1
- a2.BackgroundColor3 = Color3.new(0.756863, 0.705882, 1)
- a2.Position = UDim2.new(0, 74, 0, 374)
- a2.Size = UDim2.new(0, 176, 0, 50)
- a2.Font = Enum.Font.Highway
- a2.FontSize = Enum.FontSize.Size28
- a2.Text = "Type text you want here"
- a2.TextSize = 10
- a2.TextWrapped = true
- a2.Visible = true
- a3.Parent = a1
- a3.BackgroundColor3 = Color3.new(1, 1, 1)
- a3.BackgroundTransparency = 1
- a3.Size = UDim2.new(0, 800, 0, 600)
- a3.Font = Enum.Font.SourceSans
- a3.FontSize = Enum.FontSize.Size96
- a3.Text = "same"
- a3.TextColor3 = Color3.new(0.956863, 0.345098, 0.0588235)
- a3.TextSize = 100
- a3.TextWrapped = true
- a3.Changed:connect(function()
- a3.Text = h.Text
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement