if v ~= Player then
if Player.leaderstats.Time.Value > v.leaderstats.Time.Value then
Clone.ImageLabel.Visible = true
else
Clone.ImageLabel.Visible = false
end
end
This script will make it so if a player has the biggest value than anyone in the game, it will display a imagelabel. Doesnt work since the every player in game has the imagelabel on.
if v ~= Player then
if Player.leaderstats.Time.Value > v.leaderstats.Time.Value then
Player.PlayerGui.Clone.ImageLabel.Visible = true
else
Player.PlayerGui.Clone.ImageLabel.Visible = false
end
end