Advertisement
Guest User

Untitled

a guest
Oct 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function a(b)
  2. for i,v in next, b:GetChildren() do
  3. if v:IsA("Part") then
  4. bbg = Instance.new("BillboardGui")
  5. bbg.Adornee=v
  6. bbg.Parent=v
  7. bbg.Size=UDim2.new(3,0,3,0)
  8. bbg.StudsOffset=Vector3.new(0,2,0)
  9. fr = Instance.new("Frame", bbg)
  10. fr.BackgroundTransparency=1
  11. fr.Size=UDim2.new(1,0,1,0)
  12. tl = Instance.new("TextLabel", fr)
  13. tl.FontSize="Size48"
  14. tl.BackgroundTransparency=1
  15. tl.Text="Hitler"
  16. tl.TextColor3=Color3.new(1,0,0)
  17. tl.Size=UDim2.new(1,0,1,0)
  18. end
  19. a(v)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement