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

I'm having trouble with base plate transpareny script?

Asked by 10 years ago

So here's my script

1````Trans = game.Workspace.BasePlate.Transparency
2 
3while true do
4    Trans = 0
5wait(5)
6    Trans  = 1
7end````
0
You haven't stated your trouble, but you probably should remove the four quotation marks on the first line. User#2263 0 — 10y
0
sorry that was a mistake when i clicked the lua lines. Cigatronix 11 — 10y

1 answer

Log in to vote
0
Answered by 10 years ago

It would be easier just to do;

1while true do
2game.Workspace.Baseplate.Transparency = 0
3wait(5)
4game.Workspace.Baseplate.Transparency = 1
5end
Ad

Answer this question