I just to know how I would combine a string
I’ve tried
For Example:
local t = "test"
local v = true
local e = t..v
print(e)
but it returns with an error like so
I just to know how I would combine a string
I’ve tried
For Example:
local t = "test"
local v = true
local e = t..v
print(e)
but it returns with an error like so
you could use this
local boolean = true
local string = "Current state is: "
local combinedstring = string+tostring(boolean)
print(combinedstring)
Ok it worked! I had to change the ‘+’ to ‘…’
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.