How to change a gui text with strings and variable

I have a doubt, how can I change a .Text property to a GUI (TextLabel) with a part in text, a number in a variable and again a text part? Thanks

This is my script:

	local Value = game.Workspace.isSGVisible.Value.Value
	local gui = game.Players.LocalPlayer.PlayerGui.GUI.WaitGUI.TextLabel
		
	gui.Text = "Map Choosing in"[Value]"s"
1 Like
	local VisibleValue = game.Workspace.isSGVisible.Value
	local gui = game.Players.LocalPlayer.PlayerGui.GUI.WaitGUI.TextLabel
		
	gui.Text = "Map Choosing in"..VisibleValue.Value.."s"
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.