Example: I have a sound in my world, and the sound ends, and after a while he start again, but not start immediately
s = Instance.new("Sound") s.Name = "Sound" s.SoundId = "rbxassetid://130775373" s.Volume = 0.1 s.Looped = true s.archivable = false s.Parent = game.Workspace wait(1) s:play()
im don't know how to do this if anyone can help me thank you
s = Instance.new("Sound") s.Name = "Sound" s.SoundId = "rbxassetid://130775373" s.Parent = game.Workspace s.Looped = true s.Volume = 0.1 while true do s:play() wait(10) -- PLAY TIME s:stop() wait(10) -- PAUSE TIME end