I spawn as R15 even tho my game is R6?

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAppearance = "Classic"
end)

This is setting the appearance to R6 mode explicitly…

2 Likes

Here, for me this works 100% of the time

Players.PlayerAdded:Connect(function(player)

	task.wait(2)

	repeat 
		player.CharacterAppearance = "Classic"
		player:LoadCharacter()
		task.wait(0.5)
	until game.Workspace:FindFirstChild(player.Name) and game.Workspace[player.Name]:FindFirstChild("Left Arm")

end)
1 Like

I’m pretty sure this is just “Roblox’s” problem as There’s multiple of these forum posts
yet its also happening in my own game
I assume you just gotta wait until Roblox fixes this problem

This happens to me too. For me, this only happens when you start another test directly after stopping one. I usually just wait a couple seconds to allow Studio to fully stop the test, and then try to make another one.