|
| 17 Apr 2016 10:14 PM |
I am trying to make a function that makes a text invisible and then visible. But I can tell its going to be alot of work...and I'm trying to make the function as simple as posisble. Anyother way I can preform this:
function RevealTextTopAndBottom() script.Parent.Resources.Story_Text1.TextTransparency = 1 wait(0.03) script.Parent.Resources.Story_Text1.TextTransparency = 0.99 wait(0.03) script.Parent.Resources.Story_Text1.TextTransparency = 0.98 wait(0.03) print("Etc...") end |
|
|
| Report Abuse |
|
|
|
| 17 Apr 2016 10:23 PM |
| When you bump it just right. |
|
|
| Report Abuse |
|
|
| |
|
|
| 17 Apr 2016 10:33 PM |
function bump()
print("This is me bumping this post")
end
wait()
bump() |
|
|
| Report Abuse |
|
|
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
|
| 17 Apr 2016 10:37 PM |
for i = 1,0,-0.01 do script.script.Parent.Resources.StoryText1.TextTransparency = i wait(0.03) end
|
|
|
| Report Abuse |
|
|
| |
|
|
| 17 Apr 2016 11:48 PM |
for i = 100, 0, -1 do script.script.Parent.Resources.StoryText1.TextTransparency = i/100 wait(0.03) end
|
|
|
| Report Abuse |
|
|
|
| 18 Apr 2016 12:09 AM |
Not sure if that did the trick.
For some reason I can't access...or see anything inside of a frame. I will try fixing it.
Oh and yeah, it is visible. |
|
|
| Report Abuse |
|
|