still not fixed has anyone found a way to fix it?
Any updates on this? Iāve been having problems where my characters will not play animatiosn until you are within a few studs distance from them
Iām currently mailing back and forth with one of the staff members, he said they rolled out an update but it didnāt seem to work.
Though, it is relieving that theyāre actively trying to do somethingā¦
Yeah, thatās good to hear. I was really doubting my scripting abilities when I found this bug and got stuck on it for nearly a week
I hope this is fixed soon. Itās been ongoing for months and itās really game breaking
As of august 22nd the issue is still ongoing
I donāt know how or why you guys are instancing motor6ds for your games, but I found a fix for my own game, and I thought Iād share it here.
What I was doing was that to attach my gun models to the playerās character, I create a new motor6d and attach the gunās handle to the playerās character, while deleting the previous gun model, every time the player switched weapons.
I implemented a new system, where instead of deleting the entire gun model every time and instancing a new one, Iād create all of the Motor6Ds when the character loads, as well as some welds. Iād then just enable/disable the motor6ds, as well the the welds (I weld them to a random part somewhere else) depending on what weapons I wanted the player to become rigged to.
Doing this fixed the problem for me, and additionally Iām pretty sure itās better performance-wise than using :Destroy() and Instance.new every time the player switches their weapon.
If you donāt want to wait on roblox, want a slight performance buff, and this is applicable to your own game, I think you should consider changing it
Debatable, the server has to keep track of the existing parts whereas removing them takes a small load of memory off the server/client. Itās nothing dramatic on performance at all though, just slightly impractical.
Caching parts instead of instancing them improved performance dramatically for my game, most notably on the bullets inside of my game. Iām sure this would also apply to Motor6Ds, and even if they didnāt, youāll still have to wait for Roblox to fix the issue on their end, and deal with a broken game until then