I have my value showing, How do I make it auto update [For a name-tag[server sided)]

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    Live updating tag.

  2. What is the issue? Include screenshots / videos if possible!
    not workin

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    Nothing really.

Current code:

local template = game.StarterGui.NameTag
game.Players.PlayerAdded:Connect(function(Player)
	Player.CharacterAdded:Connect(function(Character)
		local Hd = Character.Head
		local NameTag = template:Clone()	
		NameTag.Parent = Hd
		NameTag.Adornee = Hd
		
		Character.Humanoid.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
		
		local lval = Player.status.launches
		local username = Player.Name
		local dispname = Player.DisplayName

		NameTag.launches.Text = "Launches: " .. lval.Value
		NameTag.Username.Text = username
		NameTag.displayname.Text = "@" .. dispname


		if NameTag.Parent == Hd then
			print("given.")
		end
		
	
	
		lval.Changed:Connect(function()
			NameTag.launches.Text = "Launches: " ..lval
		end)
		
		
			while true do
				math.randomseed(tick())
				local rColor = Color3.new(math.random(),math.random(),math.random())
			for i = 0 ,1, .05 do
					NameTag.top.BackgroundColor3 = NameTag.bottom.BackgroundColor3:lerp(rColor,i) -- RGB
					NameTag.bottom.BackgroundColor3 = NameTag.top.BackgroundColor3:lerp(rColor,i) -- RGB		
				wait()
				end
				wait(.01)
			end
	end)

end)

You can call the Value.Changed or Value:GetPropertyChangedSignal("") event to update your specific text.
Here is an example:

NameTag.launches.Text = "Launches: "..lval.Value

lval:GetPropertyChangedSignal("Value"):Connect(function() -- detect when the value changes
   NameTag.launches.Text = "Launches: "..lval.Value -- to update the text
end)

Also, please be more elaborate when making topics (for example: listing errors if you are receiving any, what specifically doesn’t work, what type or where is the script located etc.), because otherwise people would have a hard time understanding your issue