Join the game, you never spawn in or anything. Check the dev console client view and you get this stack trace. Starting happening today.
UPDATE: The error is unrelated to the broken game. The game broke because LocalScripts are no longer copied from StarterGui into PlayerGui. Writing a simple patch completely fixed the problem:
local contents = game.StarterGui:GetChildren()
for i, v in next, contents do
v.Parent = nil
end
game.Players.PlayerAdded:Connect(function(player)
for i, v in next, contents do
v:Clone().Parent = player:WaitForChild'PlayerGui'
end
end)
So if this breaks gameplay, then that seems game-specific, other games are apparently handling the error gracefully. Make sure to follow How to post a Bug Report in the future (not even a game link is mentioned in this post as-is).
Well my game is suffering from this also. It causes ping to spike to 500+ making the game unplayable. None of the scripts break, it just makes the game unplayable due to the lag it causes.
Do notice the scroll bar on the right side and how tiny it is, because the console is just spammed with these messages.
When I join a fresh server I have on average 80 - 110 ping. but after about 20 mins it goes to anywhere between these ranges 200 - 400, 500 - 700 and 800 - 1000. Rejoining the server doesn’t fix the problem as the console gets spammed right away with the errors when you rejoin.
From the stack trace I would assume its the playerlist core script? I know its nothing I have done.
However this doesn’t appear to be fatally breaking my game, there is just about 20 errors that all look just about identical to the one I posted. Something is obviously going on with CoreScripts from a recent update roblox made, as I don’t recall seeing this in any of my places as of about 3 weeks ago. Hope this bug gets fixed soon. Looks related to the Leaderboard and leaderstats.
Any update on this? I’ve been getting these errors on my client side for a few days now. It’s not breaking anything, but I think it’s causing a bit of lag on my end. Screenshot by Lightshot
Those corescript errors are due to the Roblox playerlist unable to handle unconventional/subpar leaderstat manipulation by the game and does not affect the game itself.
Also, standalone LocalScripts which reset on spawn should be placed into StartCharacterScripts instead of StarterGui.
In this case it looks like the leaderstats folder wasnt added straight away or was reparented for whatever reason.
You should always, with the PlayerAdded event and no yielding before/during,
Create the folder and value instances and set their properties