Advertisement
CaliberMag

Untitled

Mar 2nd, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. local BillboardGui = Instance.new("BillboardGui")
  2. local TextLabel = Instance.new("TextLabel")
  3.  
  4. BillboardGui.Parent = v.Parent
  5. BillboardGui.AlwaysOnTop = true
  6. BillboardGui.LightInfluence = 1
  7. BillboardGui.Size = UDim2.new(0, 100, 0, 100)
  8. BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
  9. BillboardGui.Adornee = v.Handle
  10.  
  11. TextLabel.Parent = BillboardGui
  12. TextLabel.BackgroundColor3 = Color3.new(245, 205, 48)
  13. TextLabel.BackgroundTransparency = 1
  14. TextLabel.Size = UDim2.new(0.5, 0, 1, 0)
  15. TextLabel.Text = "omg an item"
  16. TextLabel.TextColor3 = Color3.new(120, 81, 169)
  17. TextLabel.TextScaled = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement