So basically Sound:GetPropertyChangedSignal(“TimePosition”) never fires even if i make it on the client.
I really need help this bug has made me unable to update a sound in my game SINCE 2022
here is the script sample if needed
EnergyCore.ControlRoom.SoundEmitter.Alarm2:GetPropertyChangedSignal("TimePosition"):Connect(function()
if EnergyCore.ControlRoom.SoundEmitter.Alarm2.TimePosition >= 19 then
EnergyCore.ControlRoom.SoundEmitter.Alarm2.TimePosition = 0
end
end)
(my script is suposed to set the timeposition back to 0 after it reached 19 seconds)