I want it to go from one message to another.
************ITS BEEN ANSWERED THANK YOU************
Surface Guis.
Edit: Then add TextLabels to the surface gui and change the .Text of it?
1 | local msg = { |
2 | "Message One" , |
3 | "Message Two" |
4 | } |
5 | local length = 1 -- Amount of time inbetween messages |
6 |
7 | while wait(length) do |
8 | game.Workspace.Part.SurfaceGui.TextLabel.Text = msg [ math.random( 1 , #msg) ] ; |
9 | end |