Advertisement
pawela827

Add Score

Feb 12th, 2022 (edited)
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.18 KB | None | 0 0
  1. local scores = { ["Yourname"] = 5 , ["Someonesname"] = 10 } -- 5 and 10 change to your result number
  2. for name, score in pairs(scores) do
  3.    print(name .. " has score: " .. score)
  4. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement