So I made something that randomly generated names.
I have two variables. FirstName and Lastname. I want to generate the name of the model Both of them combined. So like Andrew Smith. Although it comes out as FirstName LastName. Does anyone know how to do this? Thanks!
local FirstName = "Andrew" local Lastname = "Smith" print(FirstName.." "..Lastname)