Advertisement
yonidrori

Untitled

Sep 12th, 2015
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local char = plr.Character
  3. local gui = Instance.new('ScreenGui',plr.PlayerGui)
  4.  
  5. local b = Instance.new('BillboardGui')
  6. b.Size = UDim2.new(5,0,6,0)
  7. local f = Instance.new('Frame',b)
  8. f.Size = UDim2.new(1,0,1,0)
  9. f.BackgroundColor3 = Color3.new(0,220/255,220/255)
  10. f.BackgroundTransparency = .65
  11. local t=Instance.new('TextLabel',f)
  12. t.Size=UDim2.new(1,0,.2,0)
  13. t.TextColor3=Color3.new(1,1,1)
  14. t.TextStrokeColor3=Color3.new(0,0,0)
  15. t.TextStrokeTransparency=.75
  16. t.TextScaled=true
  17. t.Name='tx'
  18. t.BackgroundTransparency=1
  19.  
  20. function sp()
  21. function mg(p)
  22. if p then
  23. local es = b:clone()
  24. es.Parent = gui
  25. es.Adornee = p.Torso
  26. es.AlwaysOnTop = true
  27. es.Frame.tx.Text = p.Name
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement