Image displaying on everyone's head

	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.

1 Like

do

	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
1 Like

The overhead will display on the HumanoidRootPart

uhm make the position higher then