pastebinahhhhhhhhhh

cornbread game esp roblox

Feb 21st, 2022 (edited)
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. for i, v in pairs(game.Workspace["Cornbreads"]:GetChildren()) do
  2. local BillboardGui = Instance.new("BillboardGui")
  3. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  4. BillboardGui.Active = true
  5. BillboardGui.ExtentsOffset = Vector3.new(0, 1.25, 0)
  6. BillboardGui.LightInfluence = 1
  7. BillboardGui.MaxDistance = 0
  8. BillboardGui.Size = UDim2.new(0, 2000, 0, 50)
  9. BillboardGui.ClipsDescendants = true
  10. BillboardGui.AlwaysOnTop = true
  11. BillboardGui.Parent = v
  12. BillboardGui.Adornee = v
  13. local TextLabel = Instance.new("TextLabel")
  14. TextLabel.Size = UDim2.new(0, 2000, 0, 50)
  15. TextLabel.Active = true
  16. TextLabel.BackgroundTransparency = 1
  17. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  18. TextLabel.FontSize = Enum.FontSize.Size32
  19. TextLabel.TextSize = 30
  20. TextLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
  21. TextLabel.Font = Enum.Font.SourceSans
  22. TextLabel.Text = v.Name
  23. TextLabel.Parent = BillboardGui
  24. end
Add Comment
Please, Sign In to add comment