Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- This script is getting pretty popular, Want more? --
- -- Another script will be uploaded if we reach 450 views! --
- -- Audio used by in-game sources isn't working right now. Sorry! --
- -- Configuration --
- local audioId = 9125402178 -- The Audio ID
- local Speed = 1 -- The audio speed
- local Looped = false -- If it's true, the audio loops. If not, the audio plays once
- local Parent = game.Workspace -- Create the audio in a location of your choice.
- -- ! Do not change this ! --
- local audioSource = Instance.new("Sound")
- audioSource.SoundId = "rbxassetid://"..tostring(audioId)
- audioSource.Parent = Parent
- audioSource.PlaybackSpeed = Speed -- set the speed to 1.5
- audioSource.Looped = Looped -- set loop to true
- audioSource:Play() -- play the audio
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement