Advertisement
ReBraLaCC

Example scoreboard

Aug 12th, 2016
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.60 KB | None | 0 0
  1. {
  2.     ["title"] = "Stats", -- The name on the top of the scoreboard
  3.     ["lines"] = { -- Can contain an 'unlimited' amount of lines (use common sense for this :) )
  4.         ["a"] = { -- Can be named anything DONT REPEAT THE NAMES
  5.             ["label"] = "Balance", -- these can be repeated but can't have spaces!
  6.             ["value"] = 200, -- the number it gets on the side
  7.             ["color"] = "gray", -- the color (See forum for list of colors)
  8.         },
  9.     }
  10. }
  11.  
  12.  
  13. { -- An 'empty' scoreboard to start with
  14.     ["title"] = "Enter title",
  15.     ["lines"] = {
  16.         ["first"] = {
  17.             ["label"] = "test",
  18.             ["value"] = 0,
  19.             ["color"] = "white",
  20.         },
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement