local function updateLeaderboard() local player = game.Players.LocalPlayer local tongueLength = tonguePart.Size.Z leaderboard[player.UserId] = tongueLength table.sort(leaderboard, function(a, b) return a[2] > b[2] end) end
: Removes cooldowns on special tongue abilities, such as the Easter Tongue's "Egg Trap." Roblox Tongue Battles Script
Here's the complete script:
You can display the leaderboard using a Gui or a BillboardGui . For simplicity, we'll just print the leaderboard to the console: local function updateLeaderboard() local player = game
If you value your main Roblox account and fair play, . The temporary joy of hitting #1 on the leaderboard isn’t worth the permanent ban. b) return a[2] >
local function printLeaderboard() for i, playerData in pairs(leaderboard) do local player = game.Players:GetPlayerByUserId(playerData[1]) print(player.Name .. ": " .. tostring(playerData[2])) end end