TheUnknownDiscord

gaming

Sep 4th, 2021 (edited)
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Charge = 0
  2. part = Instance.new("Part",game.Workspace)
  3. local bbgui = Instance.new("BillboardGui", part)
  4. bbgui.Size = UDim2.new(0, 400, 0, 100)
  5. bbgui.Adornee = part
  6. bbgui.AlwaysOnTop = true
  7. local tl = Instance.new("TextBox", bbgui)
  8. tl.Size = UDim2.new(1, 0, 1, 0)
  9. tl.BackgroundTransparency = 1
  10. while true do
  11. Charge = Charge + 1
  12. tl.Text = Charge
  13. wait(0.05)
  14. end
Add Comment
Please, Sign In to add comment