How to make a TextLabel display with multiple parameters

Hey Community,

I don’t know if its just me, but is there a way to have multiple parameters showing in textLabel. I don’t know how to word it exactly, but let me show you an example.

So in Java:

    public static void main(String[] args) {
        int num = 5; //integer number 5
        System.out.println("Number: " + num); //pretty much similar to print() function
                  //outputs  "Number: 5"
    }

In that example, I am able to mix both a string and a integer, so my question is, how can i do the same thing, but in a text label, or is there another way?

to concatenate in lua you use “…” two periods, so your code from java would look something like this in lua

local num = 5
print("Number: "..num)

edit: for some reason i wrote 2 periods but devforum shows 3

no ur right, it is only 2periods, cause 3periods is showing me an error…thx it works