There's a part in a sound file that i'd like to use but it's in the middle of the sound playing.
Is there a way to skip the part that i don't need?
local sound = script.Sound local whenToSkip = 10 -- 10 seconds into the sound local howMuchToSkip = 5 wait(1) sound:Play() wait(whenToSkip) -- Wait until the song plays for this long sound.TimePosition = sound.TimePosition + howMuchToSkip
Feel free to change the whenToSkip
and howMuchToSkip
variables as you like.