Advertisement
DrawingJhon

Untitled

Jun 22nd, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. local part = Instance.new("Part",workspace)
  2. part.Name = "Bruh"
  3. part.Position = Vector3.new(0, 3, 0)
  4. part.Size = Vector3.new(2, 2, 2)
  5. part.Anchored = true
  6. part.TopSurface = Enum.SurfaceType.Smooth
  7. part.BottomSurface = Enum.SurfaceType.Smooth
  8. local bg = Instance.new("BillboardGui",part)
  9. local tl = Instance.new("TextLabel",bg)
  10. bg.AlwaysOnTop = false
  11. bg.Enabled = true
  12. bg.Size = UDim2.new(4, 1, 1, 0)
  13. bg.SizeOffset = Vector2.new(0, 2)
  14. bg.Active = false
  15. tl.TextColor3 = Color3.fromRGB(255, 255, 255)
  16. tl.TextWrapped = true
  17. tl.TextScaled = true
  18. tl.Size = UDim2.new(1, 0, 1, 0)
  19. tl.Position = UDim2.new(0, 0, 0, 0)
  20. tl.BackgroundTransparency = 1
  21. tl.Font = Enum.Font.Cartoon
  22. tl.TextTransparency = 0.5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement