Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 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=874863250" -- Song ID at end.
- sound.Volume = 0.45 -- Derp (I have quality speakers you might need to change this.)
- sound.Pitch = 1 --Speed of Playback.
- sound.Looped = true
- sound.archivable = false
- sound.Parent = game.Workspace
- wait()
- sound:play()
Advertisement
Comments
-
- works, but it should have controls
-
- local sound = Instance.new("Sound", game.Players.LocalPlayer.Character)
- sound.SoundId = "http://www.roblox.com/asset/?id=1848354536" -- Song ID at end.
- sound.Volume = 1 -- Derp (I have quality speakers you might need to change this.)
- sound.Pitch = 1 --Speed of Playback.
- sound.Looped = true
- wait()
- sound:Play()
- -- relaxed scene
- -- its a better version you can change looped if you want and change the id
-
Comment was deleted
-
- just reset to delete the music
Add Comment
Please, Sign In to add comment
Advertisement