This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local Players = game:GetService("Players") | |
| local RapidForge = require(game.ReplicatedStorage.Library.RapidForge) | |
| local CONFIG = { | |
| spawnFolder = workspace.SpawnPoints, | |
| characterTemplate = game.ReplicatedStorage.Templates.Character, | |
| respawnDelay = 5, | |
| useRandomSpawn = true, | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local Players = game:GetService("Players") | |
| local RunService = game:GetService("RunService") | |
| local RapidForge = require(game.ReplicatedStorage.Library.RapidForge) | |
| local STAT_NAME = "Coins" | |
| local UPDATE_INTERVAL = 5 | |
| local leaderboardFrame = RapidForge.waitFor( | |
| RapidForge.getGui("HUD"), |