plr = owner
local sg = Instance.new("ScreenGui")
sg.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
sg.Parent = plr.PlayerGui
local shutdown = Instance.new("TextLabel")
shutdown.TextColor3 = Color3.new(1, 1, 1)
shutdown.Position = UDim2.new(0.25, 0, -2, 0)
shutdown.TextSize = 15
shutdown.ZIndex = 2
shutdown.BorderSizePixel = 0
shutdown.Font = Enum.Font.SourceSansSemibold
shutdown.TextStrokeTransparency = 0.8
shutdown.TextStrokeColor3 = Color3.new(1, 1, 1)
shutdown.Text = "The Game Has Shut Down. Please Join Another Server . . ."
shutdown.BackgroundColor3 = Color3.new(1, 0, 0)
shutdown.Size = UDim2.new(0.5, 0, 0.1, 0)
shutdown.Parent = sg
local explosion = Instance.new("Frame")
explosion.Size = UDim2.new(1, 0, 1, 0)
explosion.BackgroundTransparency = 0.5
explosion.BackgroundColor3 = Color3.new(1, 1, 1)
explosion.Parent = sg
local explode = Instance.new("Sound")
explode.SoundId = "rbxassetid://165970126"
explode.Volume = 10
explode.Parent = plr.PlayerGui
explode:Play()
for i = 1, 15 do
explosion.BackgroundTransparency = i / 15
wait()
end
local goat = Instance.new("Sound")
goat.Volume = 10
goat.Pitch = 0.75
goat.SoundId = "rbxassetid://1468368997"
goat.Parent = plr.PlayerGui
goat:Play()
shutdown:TweenPosition(UDim2.new(0.25, 0, 0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 1)
wait(0.5)
local sad = Instance.new("Sound")
sad.Volume = 5
sad.SoundId = "rbxassetid://893171674"
sad.Parent = plr.PlayerGui
sad:Play()
wait(3)
shutdown:TweenPosition(UDim2.new(0.4, 0, 2, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Sine, 5)
for i = 1, 50 do
shutdown.Rotation = math.random(-25, 25)
wait()
goat.Volume = i / 50
end