|
| 13 Jun 2014 04:58 PM |
Hello.
How do I stop writing from sliding across the brick on a Screen GUI
It's really laggy and I want the text to stay still. Thanks. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
DataStore
|
  |
| Joined: 07 Feb 2012 |
| Total Posts: 8540 |
|
|
| 14 Jun 2014 08:19 AM |
| What do you mean? Text will only move around, on a GUI, if you've scripted it to do such. |
|
|
| Report Abuse |
|
|
|
| 14 Jun 2014 11:01 AM |
script.Parent.Value.Changed:connect(function() if script.Parent.Value.Value == 0 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "" elseif script.Parent.Value.Value == 1 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "Please stand by as we are dealing with a fault" elseif script.Parent.Value.Value == 2 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "This Train is for Airport" elseif script.Parent.Value.Value == 3 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "This Train is for South Hylton" elseif script.Parent.Value.Value == 4 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "This train is for Park Lane" elseif script.Parent.Value.Value == 5 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "This train is for South Gosforth" elseif script.Parent.Value.Value == 6 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "This train terminates at the next station" elseif script.Parent.Value.Value == 7 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "This train is for Pelaw" elseif script.Parent.Value.Value == 8 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "Please mind the gap when allighting at this station" elseif script.Parent.Value.Value == 9 then script.Parent.Sign.SurfaceGui.TextLabel.Text = "This train will not stop at the next station" elseif script.Parent.Value.Value == -1 then script.Parent.Value.Value = 30 end end)
That's the current script, how do I stop the words from moving? |
|
|
| Report Abuse |
|
|
|
| 14 Jun 2014 11:08 AM |
| script.Parent.TextXAlignment = "Left" |
|
|
| Report Abuse |
|
|
|
| 14 Jun 2014 11:12 AM |
script.Parent.TextXAlignment= "Please stand by as we are dealing with a fault"
is that correct? |
|
|
| Report Abuse |
|
|
|
| 14 Jun 2014 11:22 AM |
| No. Just go to the button's properties and find 'TextXAlignment' and change it to left. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
| 14 Jun 2014 12:09 PM |
Perhaps we've misunderstood you. Try explaining what you exactly want and make sure to include details. |
|
|
| Report Abuse |
|
|
|
| 14 Jun 2014 12:10 PM |
| I've got some signs on my trains which are really laggy due to it being a large game so I want the text to stop moving and stay put in the center of the screen. |
|
|
| Report Abuse |
|
|
|
| 14 Jun 2014 12:15 PM |
May you send me a screenshot? If you don't know how then use a program called Lightshot. |
|
|
| Report Abuse |
|
|
|
| 14 Jun 2014 12:17 PM |
| A Screenshot of the signs? |
|
|
| Report Abuse |
|
|
| |
|