Having Text And Numbers In the same gui label

im currently trying to code a timer, but i need the timer to say “Time Alive: (int value here)” but idk how to code a value inside a text script
image_2022-08-31_143401263

2 Likes

Put two dots after “Time Alive:”

local timer = game.Workspace.Values.Time

while true do
	script.Parent.Text = "Time Alive:".. timer.Value
	wait(0.01)
end

You could have looked for other sources of information, before asking on the Developer forum.

1 Like