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 9 years ago

So here's my script

````Trans = game.Workspace.BasePlate.Transparency

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

1 answer

Log in to vote
0
Answered by 9 years ago

It would be easier just to do;

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

Answer this question