I wanted to ask if someone can help me to fix this so that it is displayed on the loadingscreen.
That is the code:
function UpdatePlayTime() {
$.post(http://${Config.ServerIP}/Jakrino_Load_Screen/, JSON.stringify({}), function(data) {
var playerData = JSON.parse(data)
var formatted = FormatTime(playerData);
$(“.totalPlayTimeBox h2”).html(formatted);
})
}