local a = [[PIZZA chicken ROBLOX
roblox and xolbor or nothing
tt uu aa dkkkk
dkdkdk]]
function RemoveFirstLine(ReqString:string)
--remove fire line
end
print(RemoveFirstLine(a))
Output
roblox and xolbor or nothing
tt uu aa dkkkk
dkdkdk
local str = [[pog
champ
]]
local split = str:split('\n')
table.remove(split, 1)
local result = ""
for _, s in next, split do
result = result .. s
end
print(result)