Skip to main content

sound.Name

-- WARNING: Be sure to make this a Script and place it in Workspace if you want it to work!

local sound = Instance.new("Sound")

sound.Name = "Sound"
sound.SoundId = "http://www.roblox.com/asset/?id=1328769629" -- Song ID at end.
sound.Volume = 500.00 -- Derp (I have quality speakers you might need to change this.)
sound.Pitch = 1 --Speed of Playback.
sound.Looped = false
sound.archivable = false

sound.Parent = game.Workspace

wait()

sound:play()