Is there a way i can combine these two scripts so the while true do script on the bottom will play after the sound:Play() on the main script on the top?
local sound = Instance.new("Sound") sound.SoundId = "http://www.roblox.com/asset/?id=162555471" sound.Parent = game.Workspace.Sound3 sound:Play() wait(150) sound:stop()
And
while true do game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random()) wait(0.1) end