#how do i play sounds?
1 messages · Page 1 of 1 (latest)
DM me if u can
local sound = ur sound path
sound:Play()
This is for local, on the server the sound needs a location to play from so you need to set it to be a child of a part
local sound = script.Sound:Clone()
sound.Parent = workspace.Baseplate
sound:Play()
game.Debris:AddItem(sound,10)
I always put sounds in server storage
sound:Play()