I'm making a map on my game where the top 3 people on the leaderboard load in, the problem is that you go from be super big to super small
How would I fix this?
while true do
if game.ReplicatedStorage.LeaderboardValues.ThirdPlace.UID.Value ~= 0 then -- This is only for 3rd place
local Playerdesc = game.Players:GetHumanoidDescriptionFromUserId(game.ReplicatedStorage.LeaderboardValues.ThirdPlace.UID.Value)
script.Parent.Humanoid:ApplyDescription(Playerdesc)
wait(7)
end
wait(3)
end



