Hello, the bug is when I add the following code, my game becomes R15 (originally R6)
local character = Player.Character or Player.CharacterAdded:Wait()
local function updateHumanoid()
self.humanoid = character:WaitForChild("Humanoid")
if next(self.humanoid:GetAccessories()) then
self.humanoid:RemoveAccessories()
end
end
self.character = character
if waitForChild then updateHumanoid() else task.spawn(updateHumanoid) end
hi! sorry for the late reply. i am unable to repro this with the file you attached. is this issue still ocurring?
if so, could you give me some more up to date repro steps?
Basically nothing new, all that I described in the post. Sometimes my game turn R15 while avatar type is R6. I don’t know what do you mean about linking the game, because I haven’t release it yet, and I already sent you the file of the place.
Im getting this issue too. Its not consistent and I’m unsure if there is a setting which ive turned on which causes that. But I very frequently start a test play and the characters spawn in R15 instead of R6 even tho I’ve set the game to R6. Resetting after spawning in R15 respawns your character in R6 tho.
This is happening in Studio. A switch was flipped in the last hour or so while I was developing and now I cannot test my game as my character keeps repeatedly dying on spawn.
FWIW my ingame cosmetics system (which has been untouched for months at this rate) makes use of game.Players:GetCharacterAppearanceAsync() for loading the players own avatar when they do not have an ingame skin equipped.
EDIT: After some testing, it turns out the API I was using was not the culprit. My avatar is being forced to R15 on spawn in an R6 game.
After restarting studio, my character now spawns in without issue. Thanks for reverting it.
I work only with local files. Since I am unable to change game settings with local files I suppose the next best thing to say is the place ID where the game settings are inherited from because you cannot change game settings on a local file.
sorry, what do you mean by game settings are inherited from this place? or how do you trigger the behavior where a local file inherits from a particular universe?