I need to combine these two, but I dont know how to
local name = item.name.Value`Preformatted text`
game.ReplicatedStorage.esya:Clone().Parent = player.StarterGear
I need to combine these two, but I dont know how to
local name = item.name.Value`Preformatted text`
game.ReplicatedStorage.esya:Clone().Parent = player.StarterGear
The ..
operator will combine strings together
local name = item.name.Value .. `Preformatted Text`
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.