← Back to Football Scripts

Win Screen Script

Customize your variables, then fill in the blanks!

Your Custom Settings

Find in Game Settings

LocalScript (inside TextLabel)

This shows a win message when a team wins. Create a TextLabel (Visible = false) and TextButton for "Play Again".

local plr = game..
while wait(1) do
    if game.Teams.Reds.Goals. > 2 then
        script.Parent. = true
        script.Parent. = "Reds Wins!"
    elseif game.Teams.Blues.Goals.Value > 2 then
        script.Parent.Visible = true
        script.Parent.Text = "Blues Wins!"
    end
end
script.Parent.TextButton.:Connect(function()
    game:GetService(""):TeleportAsync(123123123, game.Players:GetPlayers())
end)