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

What wrong with this script?

Asked by 9 years ago
Workspace.PIDS.PIDS.TextLable.Text = "A"
Wait(5)
Workspace.PIDS.PIDS.TextLable.Text = "B"
Wait(5)
Workspace.PIDS.PIDS.TextLable.Text = "C"
Wait(5)
Workspace.PIDS.PIDS.TextLable.Text = "D"
Wait(5)


Workspace>PIDS(Part)>PIDS(SurfaceGui)>Frame>TextLable

l need a fix script

1 answer

Log in to vote
1
Answered by 9 years ago
Workspace.PIDS.PIDS.TextLabel.Text = "A"
Wait(5)
Workspace.PIDS.PIDS.TextLabel.Text = "B"
Wait(5)
Workspace.PIDS.PIDS.TextLabel.Text = "C"
Wait(5)
Workspace.PIDS.PIDS.TextLabel.Text = "D"
Wait(5)

You put TextLable not TextLabel. Try that.

0
Tested,failed(TextLabel is not a valid member of SurfaceGui) 7785543 2 — 9y
Ad

Answer this question