Yeah i was just wondering if it was possible to input audio into workspace with a script as i tried doing this like im dumb
game.workspace:New.Sound
yeah if anyone can answer this thankz
Referencing kingdom5:
s = Instance.new("Sound") s.Parent = game.Workspace s.SoundId = "rbxassetid://000000000" -- ID goes here s.Looped = false -- Or true if you want server music s.Volume = 1 s:Play()
If I understand this right you need something like this :)
local ID = 000000000 -- ID HERE :D local Sound = Instance.new("Sound") Sound.Parent = game.Workspace Sound.SoundId = ID
Any questions or if you want to correct me feel free to do so :)