I can i print a variable?
1 | local Role = Knight |
2 |
3 | print ( "Your role is" Role) |
Edit; nvm i fgured it out, you just add a ","
To merge arguments you should use ..
:
1 | print ( "Your role is " ..Role) |
Usage of a comma in your case will semi-work(It will print both but in reality, it's not merged). But If you want to apply it to TextLabel
for example it wouldn't work.
1 | local varibale 1 = "hey" |
2 | local variable 2 = "bye" |
3 |
4 | game.Workspace.Part.Name = varibale 1 ,variable 2 -- Will name it "hey" |
5 | game.Workspace.Part.Name = varibale 1.. variable 2 -- Will name it "heybye" |