what i want this to do is to clone to player then, when IntroMusic is deleted it plays the Aviici song after 2.50 seconds as showed below, but only after IntroMusic is gone how i do that ?
local Aviici = script.Aviici:Clone() game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:wait() Aviici.Parent = player game.Players.LocalPlayer:WaitForChild("IntroMusic") wait(2.50) player.Aviici:Play() end)