Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 258.kk = true --Change this to true if you want it to play music!
- 259.
- 260.if kk == true then
- 261.s = Instance.new("Sound")
- 262.
- 263.s.Name = "BGMusic"
- 264.s.SoundId = "http://www.roblox.com/asset/?id=305476324" --SoundID here.
- 265.s.Volume = 1
- 266.s.Looped = true
- 267.s.Archivable = true
- 268.
- 269.s.Parent = game.Workspace
- 270.
- 271.
- 272.while true do
- 273.wait(.2)
- 274.s:play()
- 275.
- 276.wait(60)-- Time where music should stop and loop again.
- 277.s:Pause()
- 278.end end
- 279.
- 280.-----------dead pixel chiptune-------------
- 281.
- 282.kk = true --Change this to true if you want it to play music!
- 283.
- 284.if kk == true then
- 285.s = Instance.new("Sound")
- 286.
- 287.s.Name = "BGMusic"
- 288.s.SoundId = "http://www.roblox.com/asset/?id=142794027" --SoundID here.
- 289.s.Volume = 1
- 290.s.Looped = true
- 291.s.Archivable = true
- 292.
- 293.s.Parent = game.Workspace
- 294.
- 295.
- 296.while true do
- 297.wait(.2)
- 298.s:play()
- 299.
- 300.wait(60)-- Time where music should stop and loop again.
- 301.s:Pause()
- 302.end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement