I'm currently trying to edit a TextLabel with a script. In the script, I'm trying to change the text of the label so that it is a certain line of text and then the name of the player. Example: "Welcome to the game, name of player!" I have no knowledge of how to do this so I need help on how to create the script.
put this into a local script and parent it to the textbox
1 | script.Parent.Text = "Welcome to the game " ..game.Players.LocalPlayer.Name |
its that easy, the little .. means followed by and ofcourse the text in the speachmarks is the test you always want to be in there i wouldnt have given u the script if it wasnt this easy btw