Any way to change a billboard gui into a screen gui in starter gui?

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

Can you explain what you mean? (I don’t understand you)
“How would I change my billboard gui script to a screen gui?”
Are you asking to see your billboard GUI?

2 Likes

im trying to make a billboard gui into a screen gui, or a billboard gui on the screen

Like, transform the billboard gui into a screengui while in-game?

1 Like

no just change it into a screen gui in roblox studio
sorry for not being clear

Create a ScreenGUI in Starter GUI
Take all the children of the Billboard GUI and insert it into the ScreenGUI (You might need to rescale)

1 Like

image
im done. next step is to do this?

local scoreBoardGui = game.StarterGui.ScreenGui

local elfScore = scoreBoardGui.Score.SpursScore

local gnomeScore = scoreBoardGui.Score.ArsenalScore

local status = scoreBoardGui.Status

local timer = scoreBoardGui.Timer

update: the timer froze and the score isn’t working at all. this is the problem i was running into. image