I can i print a variable?
local Role = Knight print("Your role is"Role)
Edit; nvm i fgured it out, you just add a ","
To merge arguments you should use ..
:
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.
local varibale1 = "hey" local variable2 = "bye" game.Workspace.Part.Name = varibale1,variable2 -- Will name it "hey" game.Workspace.Part.Name = varibale1..variable2 -- Will name it "heybye"