Hello everyone,
I was having so slight trouble with this "easy" script. It works perfectly fine in studio, but it refused to work in the normal player. I've already tried putting it in a LocalScript in workspace, but that doesn't seem to do anything neither. Help would be appreciated!
local s = Instance.new("Sound") s.Name = "Sound" s.SoundId = "http://www.roblox.com/asset?id=149730036" s.Volume = 0.2 s.Pitch = 1 s.Looped = true s.archivable = true s.Parent = game.Workspace.Camera wait(1) s:play()
local s = Instance.new("Sound") s.Name = "Sound" s.SoundId = "http://www.roblox.com/asset?id=175376701" s.Volume = 0.2 s.Pitch = 1 s.Looped = true s.archivable = true s.Parent = script.Parent.Parent wait(1) s:play()
Trying to put the script into a studio's camera is not the best idea