Concat (Function) — Skript
Addon: Skript · Category: Function
Syntax
concat(texts: objects) :: stringDescription
Joins the provided texts (and other things) into a single text.
Examples
concat("hello ", "there") # hello there
concat("foo ", 100, " bar") # foo 100 bar