i need help the last part does not work i want it to turn smoothely off
sound = script.Parent while true do wait(14) sound:Play() wait(14) script.Parent.Volume=0,4 wait(1) script.Parent.Volume=0,3 wait(1) script.Parent.Volume=0,2 wait(1) script.Parent.Volume=0,1 wait(1) sound:Stop() end
You have to change 0,4 to 0.4
sound = script.Parent while true do wait(14) sound:Play() wait(14) script.Parent.Volume=0.4 wait(1) script.Parent.Volume=0.3 wait(1) script.Parent.Volume=0.2 wait(1) script.Parent.Volume=0.1 wait(1) sound:Stop() end