RivaldisR 1 Posted June 14, 2018 Servers starts but when you logging in on login screen I am keep getting this error Here is the code // Set the hour from the server let time = serverTime.split(':'); let hours = parseInt(time[0]); let minutes = parseInt(time[1]); let seconds = parseInt(time[2]); mp.game.time.setClockTime(hours, minutes, seconds); Share this post Link to post Share on other sites
MrPancakers 109 Posted June 15, 2018 Like the error says serverTime = null meaning it has no value. You need to debug how you're assigning a value to serverTime because it has no value when you're using it. Share this post Link to post Share on other sites