Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make sounds play locally?

Asked by 8 years ago

like in Pilgrim Islands Reborn, the islands in the game has a different sound

1 answer

Log in to vote
0
Answered by 8 years ago
local player = script.Parent.Parent --Make sure to put this in 'StarterGui'

local Sound = Instance.new("Sound", player)
Sound.Name = "LocalMusic"
Sound.SoundId = "http://www.roblox.com/asset/?id="..ID.Text --Change this to whatever ID you want :P
wait(0.1)
Sound:play()
end
end

Just place this into whatever you are trying to add, then continue on to make appropriate functions.

0
This isn't a request site, so I won't provide you any more information. User#9949 0 — 8y
0
THIS CRAP DONT WORK FU###C YOU 12345gabriel12345 15 — 8y
Ad

Answer this question