Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for i, v in pairs(game.Workspace["Cornbreads"]:GetChildren()) do
- local BillboardGui = Instance.new("BillboardGui")
- BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- BillboardGui.Active = true
- BillboardGui.ExtentsOffset = Vector3.new(0, 1.25, 0)
- BillboardGui.LightInfluence = 1
- BillboardGui.MaxDistance = 0
- BillboardGui.Size = UDim2.new(0, 2000, 0, 50)
- BillboardGui.ClipsDescendants = true
- BillboardGui.AlwaysOnTop = true
- BillboardGui.Parent = v
- BillboardGui.Adornee = v
- local TextLabel = Instance.new("TextLabel")
- TextLabel.Size = UDim2.new(0, 2000, 0, 50)
- TextLabel.Active = true
- TextLabel.BackgroundTransparency = 1
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.FontSize = Enum.FontSize.Size32
- TextLabel.TextSize = 30
- TextLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = v.Name
- TextLabel.Parent = BillboardGui
- end
Add Comment
Please, Sign In to add comment