ADVERTISEMENTREMOVE ADS
Leaderboard+
48,693 views

Script Preview
Description
This script enhances the built-in Leaderstats/Leaderboard inside of Arcade Haven by displaying all players hidden cash and showing each of their levels.
The script only needs to be run once, as it continuously updates each player's values and accounts for new players automatically.
If you are looking for a Farming script, I will release that in a couple days.
Features:
- Bypasses Cash Hiding
- Displays Players Levels
- Better Leaderboard
Tested with
ADVERTISEMENTREMOVE ADS
48 Lines β’ 1.3 KiB
Verified
local function updatePlayer(player)
local playerInfo = game:GetService("ReplicatedStorage"):WaitForChild("Packages")
:WaitForChild("_Index"):WaitForChild("[email protected]")
:WaitForChild("knit"):WaitForChild("Services")
:WaitForChild("UserInfoService"):WaitForChild("RF")
:WaitForChild("GetUserInfo"):InvokeServer(player)
local money = playerInfo.Cash
local levels = playerInfo.Level[1]
local leaderstats = player:FindFirstChild("leaderstats")
local cash = leaderstats:FindFirstChild("Cash")
if not cash then
cash = Instance.new("IntValue")
cash.Name = "Cash"
cash.Parent = leaderstats
end
local level = leaderstats:FindFirstChild("Level")
if not level then
level = Instance.new("IntValue")
level.Name = "Level"
level.Parent = leaderstats
end
if not tonumber(cash.Value) then
cash.Value = money
end
cash.Value = money
level.Value = levels
end
local function updateAllPlayers()
for _, player in ipairs(game:GetService("Players"):GetPlayers()) do
updatePlayer(player)
end
end
autoUpdate = true
game.Players.PlayerAdded:Connect(updatePlayer)
while autoUpdate do
updateAllPlayers()
task.wait(1)
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments
cool script didnt know this was a game glad ya posted about the game but like whats the point of the script. I get it does all that but like why does it matter... Cool script tho 5 stars on yelp
@pcallskeleton Thanks! This script is just meant to be a simple quality of life change. I've been working on another 2 scripts for Arcade Haven (actually good ones tho) and will probably combine them all into one in like a couple days.