This seems to still occur, got this glitch happen in one random server today in my R6 game:
bump. Stills happens to me, it is now happening very often in some of my places
for some reason this also happens to me as well and im confused on why. is it a bug or something? i tested in other places and i had no problem but creating new places causes this to happen
Me twenty-one, I got this issue as well.
Temporary fix for now that worked for me.
Note that using this method, the character doesnāt keep any StarterCharacterScripts, which could cause issues. Implementing a function like the one below should solve most problems though:
local players = game:GetService("Players")
local starterPlayer = game:GetService("StarterPlayer")
local function transferStarterScripts(character)
local starterScripts = starterPlayer.StarterCharacterScripts:GetChildren()
-- Remove this line if you don't use an Animate script in StarterCharacterScripts
character:FindFirstChild("Animate"):Destroy()
for _, script in pairs(starterScripts) do
local scriptClone = script:Clone()
scriptClone.Parent = character
end
end
for _, player in pairs(players:GetChildren()) do
if player.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
local humanoidDescription = players:GetHumanoidDescriptionFromUserId(player.CharacterAppearanceId)
local r6Character = players:CreateHumanoidModelFromDescription(humanoidDescription, Enum.HumanoidRigType.R6)
r6Character:SetPrimaryPartCFrame(player.Character.PrimaryPart.CFrame)
r6Character.Name = player.Name
player.Character = r6Character
r6Character.Parent = workspace
transferStarterScripts(r6Character)
end
end
Having a StarterCharacter inside of StarterPlayer also seems to fix it.
this is not a FIX, but more a workaround, Roblox still needs to pay more attention to the real problem
if it was resolved, now its back, i only started experiencing it a week ago and it happens every single time
Thanks all for alerting us that the issue is still happening! We are looking into it again.
is this the reason all the animations stop working when I join the game from roblox and not roblox studio?
yes, I have also encountered this bug, especially when I create a new game and set it to R6, I stopped encountering it for some time but now Iām getting this bug where all animations just donāt work when I enter the game from the roblox app and not roblox studio. Maybe itās just meā¦ and my codeā¦