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

How do you make a transparency brick, that follows a pattern? (0.1 0.2 0.3 0.4 0.5) [closed]

Asked by 10 years ago

I need to learn how to do this.

0
Provide more explanation and code you have tried User#11893 186 — 10y

Closed as Not Constructive by evaera

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
-1
Answered by
Secula 0
10 years ago
while true do 
script.Parent.Transparency = 0 
wait(3)
script.Parent.Transparency = 0.1
wait(3) 
script.Parent.Transparency = 0.2
wait(3)
script.Parent.Transparency = 0.3
wait(3)
script.Parent.Transparency = 0.4
wait(3)
game.Parent.Transparency = 0.4
end  -- DONT TOUCH THIS`

--Change the "(3)" to the time you want. 

Ad