RedCrazyHunch

BillBoard Custom Name

Mar 15th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.95 KB | None | 0 0
  1. CV="Red"
  2.     p = game.Players.LocalPlayer
  3.     char = p.Character
  4.     local txt = Instance.new("BillboardGui", char)
  5.     txt.Adornee = char .Head
  6.     txt.Name = "_status"
  7.     txt.Size = UDim2.new(2, 0, 1.2, 0)
  8.     txt.StudsOffset = Vector3.new(-9, 8, 0)
  9.     local text = Instance.new("TextLabel", txt)
  10.     text.Size = UDim2.new(10, 0, 7, 0)
  11.     text.FontSize = "Size24"
  12.     text.TextScaled = true
  13.     text.TextTransparency = 0
  14.     text.BackgroundTransparency = 1
  15.     text.TextTransparency = 0
  16.     text.TextStrokeTransparency = 0
  17.     text.Font = "Bodoni"
  18.     text.TextStrokeColor3 = Color3.new(0,0,0)
  19.  
  20.     v=Instance.new("Part")
  21.     v.Name = "ColorBrick"
  22.     v.Parent=p.Character
  23.     v.FormFactor="Symmetric"
  24.     v.Anchored=true
  25.     v.CanCollide=false
  26.     v.BottomSurface="Smooth"
  27.     v.TopSurface="Smooth"
  28.     v.Size=Vector3.new(10,5,3)
  29.     v.Transparency=1
  30.     v.CFrame=char.Torso.CFrame
  31.     v.BrickColor=BrickColor.new(CV)
  32.     v.Transparency=1
  33.     text.TextColor3 = Color3.new(255,87,3)
  34.     v.Shape="Block"
  35.     text.Text = "Redddy"
Advertisement
Add Comment
Please, Sign In to add comment