SHOW:
|
|
- or go back to the newest paste.
1 | local s = Instance.new("Sound") | |
2 | ||
3 | s.Name = "WindsOfFjords" | |
4 | s.SoundId = "http://www.roblox.com/asset/?version=1&id=1065045593" | |
5 | s.Volume = 10 -- this is the Volume | |
6 | s.Pitch = 1 -- this is the pich | |
7 | s.TimePosition = 60.7 -- this is the time position the song is on | |
8 | ||
9 | ||
10 | ||
11 | s.Looped = true | |
12 | s.PlayOnRemove = false | |
13 | s.archivable = false | |
14 | ||
15 | s.Parent = game.Workspace | |
16 | ||
17 | wait(2) | |
18 | ||
19 | s:play() |