Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Several recent bugs in Roblox causing my game to work improperly?

Asked by 5 years ago
Edited 5 years ago

Hi, the reason my title is vague is because there are several things that happened this past week that have broken my game and I want to know what's changed, if they are bugs, and how I can fix them.

First off, I've had these scripts running for months without issue, and just this past week have I started to have several things break.

First, one of my scripts calls for the player sound inside the Head of the Character, like this:

local head = player.Character:WaitForChild("Head")
head.Running.Volume = 0

This used to work fine, but now it's telling me that Running (and all other sounds under Head like Climbing, Landing, etc.) don't exist, making my script break.

A second thing that broke this week was the BodyHeight,Width,Depth, and HeadScale values underneath the Humanoid instance of the Character.

I have a script that ran like this for months without issue until just this week:

local humanoid = player.Character:WaitForChild("Humanoid")
humanoid:WaitForChild("BodyHeightScale").Value = 0.5

And now, it's giving me an error that says "Something unexpectedly tried to set the parent of OriginalSize to NULL." Can someone explain what this means and why its giving me an error now when it didn't used to before?

Is Roblox changing its codes? Are these bugs? Will Roblox fix this soon or do I have to change my scripts now?

0
you should be using player.Character:WaitForChild("Head"):WaitForChild("Running").Volume = 0 as there may be a small delay User#5423 17 — 5y
0
That would help, and I did try that. Now its giving me an error that theres an infinite yield for Running. I checked if Running even exists in the Head, so i opened up my character during the test gameplay and i didn't see any of the sounds in the head. Have they been recently moved to somewhere else?? I was able to replicate this over and over, even after closing and reopening. ShinyGriffin 129 — 5y
0
Sadly, it's been a month and I just had the same problem. I even tried using wait(0) or spawn(f) and still have the same issue. KardashevScale 110 — 5y
0
I'm glad its not just me. Ive been having this problem for a while. Sometimes my character sound will randomly just not spawn in, and sometimes they do. I still havent figuired out what to do about it. :( ShinyGriffin 129 — 5y

Answer this question