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

How do I get Playback Loudness to not show up as a 0?

Asked by 5 years ago
Edited 5 years ago

This is the script in workspace:

local lava = workspace.Lava

local sound = game.Workspace.Sound



sound:Play()



while true do

local j = sound.PlaybackLoudness/30

if sound.TimePosition > 1 then

lava.Size = Vector3.new(lava.Size.X, j, lava.Size.Z)

lava.LavaOn.Value = true

wait()

end

wait()

end
0
Is this script being run server sided cause if so I don't think server scripts can view the playback loudness of a sound. Run the second part via a local script that detects when the sound starts playing. Protogen_Dev 268 — 5y
0
Nevermind, got it after asking around on a disc, I solved it by firing a remote with the data, thanks for trying! Rainbonium 19 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

Nevermind, got it after asking around on a disc, I solved it by firing a remote with the data, thanks for trying!

Ad

Answer this question