RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a instance sound named gameMusic and make it parented to the script.parent"
-- server script local gameMusic = Instance.new("Sound") gameMusic.Name = "GameMusic" gameMusic.Parent = script.Parent gameMusic.SoundId = "rbxassetid://YourSoundIDHere" -- replace with your sound ID gameMusic.Volume = 0.1 gameMusic:Play()