How do I drop text down a line?

Trying to make an overhead gui. I want to have the text drop down a line with each entry. I tried using /n because I read that does something, but it doesn’t seem to like that.

local Players = game:GetService("Players")
local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
		if plr:IsInGroup(9534505)then
			local clonedgui = billboardgui:Clone()
			clonedgui.TextLabel.Text = (plr.Name, \n plr:GetRankInGroup(9534505), \n "The Takeda Clan")
			clonedgui.TextLabel.TextColor3 = Color3.fromRGB(165, 161, 36)
			clonedgui.Parent = game.Workspace:WaitForChild(plr.Name).Head
		end
	end)
end)

You can concatenate strings. \n (new line) has to be wrapped in quotation marks or apostrophes. Try using

clonedgui.TextLabel.Text = plr.Name .. "\n" .. plr:GetRankInGroup(9534505) .. "\nThe Takeda Clan"
4 Likes