|
| 24 Nov 2015 08:07 PM |
First off i have this script function onClicked(playerWhoClicked) game.Workspace.v1.Screen.SurfaceGui.TextBox.Text = "1" end script.Parent.ClickDetector.MouseClick:connect(onClicked) pretty basic right? but i want it so when ever i click it AGAIN it ADDS a 1 i mean like if you click it it reads "1" if you click it again it reads "11" and it you click it AGAIN it reads "111" and so on. |
|
|
| Report Abuse |
|
|
|
| 24 Nov 2015 08:14 PM |
function onClicked(playerWhoClicked) game.Workspace.v1.Screen.SurfaceGui.TextBox.Text = game.Workspace.v1.Screen.SurfaceGui.TextBox.Text ..1 end script.Parent.ClickDetector.MouseClick:connect(onClicked) |
|
|
| Report Abuse |
|
|
|
| 24 Nov 2015 08:21 PM |
| How do i make it skip lines after it reaches the end of the screen (the TextBox size is 923, 845) |
|
|
| Report Abuse |
|
|
|
| 24 Nov 2015 08:24 PM |
| game.Workspace.v1.Screen.SurfaceGui.TextBox.TextWrapped = true |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 24 Nov 2015 08:46 PM |
| i have text scaled on and its not working its still just piling up and getting smaller and not skipping lines. |
|
|
| Report Abuse |
|
|