I wanted to know if it was possible to make multi sounds play in like a line, this is just a thought i was thinking, because i notice most gun games have more then one bullet wiz sound effect and i have just this one.
local Meta = Instance.new("Sound") Meta.Name = "Crack" Meta.SoundId = "rbxassetid://151130102" Meta.Volume = 1.5 Meta.Pitch = 1 Meta.Looped = true Meta.Parent = bullet Meta:play()
as you can see this plays one sound id, is it possible to make it play more then one like maybe adding a comma to it and maybe they will play in a line? or will that require more scripting? thanks for your help!
Here, use this handly function:
local function playSound(soundId,loop,parent) local s = Instance.new("Sound") s.SoundId = soundId s.Looped = loop s.Parent = parent end