Players Character Doesn't Load in Studio or in ROBLOX

After I added this script in:

-- serverscript
local rep = game:GetService("ReplicatedStorage")
local players = game:GetService("Players")
local minutesvalue = rep:WaitForChild("Minutes")
local secondsvalue = rep:WaitForChild("Seconds")
local Day = rep:WaitForChild("Day")
local minutes = 2 --minutes
local seconds = 59 --seconds

while true do
	minutesvalue.Value = minutes
	secondsvalue.Value = seconds
	
	repeat
		if secondsvalue.Value <= 0 then
			minutesvalue.Value = minutesvalue.Value - 1
			secondsvalue.Value = 59
		else
			secondsvalue.Value = secondsvalue.Value - 1
		end
		wait(1)
	until secondsvalue.Value <= 0 and minutesvalue.Value <= 0
    local DayNow = Day.Value +1
    for _, player in pairs(game.Players:GetPlayers()) do
       player.PlayerGui.Timer.TextLabel.Text = ("Day"..DayNow)
    end
end
-- local script
local rep = game:GetService("ReplicatedStorage")
local minutes = rep:WaitForChild("Minutes")
local seconds = rep:WaitForChild("Seconds")
local text = script.Parent

if seconds.Value <= 9 then
	text.Text = tostring(minutes.Value)..":0"..tostring(seconds.Value)
else
	text.Text = tostring(minutes.Value)..":"..tostring(seconds.Value)
end

minutes:GetPropertyChangedSignal("Value"):Connect(function()
	if seconds.Value <= 9 then
	text.Text = tostring(minutes.Value)..":0"..tostring(seconds.Value)
else
	text.Text = tostring(minutes.Value)..":"..tostring(seconds.Value)
end
end)

seconds:GetPropertyChangedSignal("Value"):Connect(function()
	if seconds.Value <= 9 then
	text.Text = tostring(minutes.Value)..":0"..tostring(seconds.Value)
else
	text.Text = tostring(minutes.Value)..":"..tostring(seconds.Value)
end
end)

The characters avatar is a blocky gray r15 character instead of the player’s avatar, does this script interfere with the character???

2 Likes

This is a roblox error. After a while it should load.

2 Likes

Oh that also happened to me today I don’t think it is a problem with your script.

This has just occured in a LOT of games, it is nothing to do with your scripts. People are getting respawned, characters look like the noob skintone and also grey.

Oh so its just doesn’t load in properly?

1 Like

This needs to go in #platform-feedback

Ok thanks everyone! The character loads when you reset

Yes, it’s happening to me and taking long time to load