2026-05-02 23:53:49 +02:00

23 lines
251 B
Plaintext

export type LeaderBoardSettings = {
Name : string,
UpdateInterval : number
}
local Settings = {
Cash = {
Name = "Richest Players",
UpdateInterval = 60,
},
Wins = {
Name = "Most wins",
UpdateInterval = 30,
}
}
return Settings