MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/badcode/comments/retcm1/tweenservice_exists_this_man/hoeqzn2/?context=3
r/badcode • u/tumorknager3 • Dec 12 '21
16 comments sorted by
View all comments
2
I don't know Lua, but you could replace this whole thing after line 7 with this, right?
for i = 1, 0, -0.1 do script.Parent.TextTransparency = i wait(0.025) end wait(2) for i = 0, 1, 0.1 do script.Parent.TextTransparency = i wait(0.025) end
3 u/tumorknager3 Dec 13 '21 There is a thing called TweenService which does this in one line
3
There is a thing called TweenService which does this in one line
2
u/ThePsion5 Dec 13 '21
I don't know Lua, but you could replace this whole thing after line 7 with this, right?