Advertisement
Mediakiller7Cool

umm

Jul 16th, 2019
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. local plr = owner
  2. local char = owner.character
  3.  
  4. local BillboardGui = Instance.new("BillboardGui")
  5. local TextLabel = Instance.new("TextLabel")
  6.  
  7. BillboardGui.Name = "Hello"
  8. BillboardGui.Parent = char.Head
  9. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10. BillboardGui.AlwaysOnTop = true
  11. BillboardGui.ExtentsOffset = Vector3.new(0, 3, 0)
  12. BillboardGui.LightInfluence = 1
  13. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  14.  
  15. TextLabel.Parent = BillboardGui
  16. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  17. TextLabel.BackgroundTransparency = 1
  18. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  19. TextLabel.Font = Enum.Font.SourceSans
  20. TextLabel.Text = ""
  21. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  22. TextLabel.TextScaled = true
  23. TextLabel.TextSize = 14
  24. TextLabel.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement