|
this doesnt actually work, and what its supposed to do is activate when script.Parent.Value == 3, but it doesnt
repeat wait() until script.Parent.Value == 3
script.Parent.Parent.Music:Stop()
i = Instance.new("Sound")
i.Parent = script.Parent.Parent
i.Name = "finalmusic"
i.SoundId = "http://www.roblox.com/asset/?id=143681117"
i.Volume = 1
i:Play()
wait(5)
i:Stop()
i:Destroy()
script.Parent.Parent.Music.Pitch = 1.2
game.Workspace.Sound:Play()
wait(1)
script:Destroy()
please help
|