How would I change my billboard gui script to a screen gui? I tried multiple ways but all of them didn’t work at all (this isn’t the enitre script, the full script model is here (GameScript - Roblox)
local scoreBoardGui = workspace.Score.ScoreboardGui
local elfScore = scoreBoardGui.Score.SpursScore
local gnomeScore = scoreBoardGui.Score.ArsenalScore
local status = scoreBoardGui.Status
local timer = scoreBoardGui.Timer
local function score(team)
team.Text = team.Text + 1
status.Text = "GOAL"
wait (5)
resetBall(5)
for index, player in next, playersService:GetPlayers() do
player:LoadCharacter()
end
resetBall(0.0001)
end
for minutes=1, 400 do
timer.Text = "Timer: " .. minutes
status.Text = ""
if minutes == 200 then
status.Text = "Half Time"
resetBall(15)
for index, player in next, playersService:GetPlayers() do
player:LoadCharacter()
end
end
if minutes == 400 then
status.Text = "Full Time"
resetBall(15)
for index, player in next, playersService:GetPlayers() do
player:LoadCharacter()
end
end
wait(minuteLength)
end

