Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you add a space in a text label?

Asked by 4 years ago
slot.Text = slot.Name..  "Slot"

So, what im trying to do is after the slot.name it says slot.

It currently does this NameSlot

I want it to do this Name Slot

1 answer

Log in to vote
0
Answered by 4 years ago

So what you have is this:

slot.Text = slot.Name.. "Slot"

This is how to do it.

slot.Text = slot.Name.. " Slot"
Ad

Answer this question