of     1   

TaskScheduler
#183626715Monday, February 15, 2016 12:12 AM GMT

Hello. Here is my script. for i = 1, 100 do workspace.Baseplate.Transparency = i wait(1) end I'm pretty sure it was working earlier today but now it's not. Any suggestions?
Veulix
#183626795Monday, February 15, 2016 12:13 AM GMT

Here u go! :) for i = 1, 100 do workspace.Baseplate.Transparency + i wait(i) end
cntkillme
#183626858Monday, February 15, 2016 12:14 AM GMT

divide i by 100, transparency takes a percentage, a value between 0 and 1 which of course you already know
TaskScheduler
#183626935Monday, February 15, 2016 12:15 AM GMT

Mine was making it stay invisable veulix yours makes it stay visible, I need a combo of the 2 xD
Veulix
#183627039Monday, February 15, 2016 12:16 AM GMT

Ohhh try this for i = 0, 1 do workspace.Baseplate.Transparency = i wait(0.00000000000000000000000000000000001) // Wait the smallest amount of time as possible end
Aethex
#183627251Monday, February 15, 2016 12:19 AM GMT

...i don't know what you think you're doing veulix but it won't work just do what cntkillme said: for i = 1, 100 do workspace.Baseplate.Transparency = i/100 wait(1) end
Veulix
#183627300Monday, February 15, 2016 12:19 AM GMT

Nope that wont work cause you cant divide intergers in LUA.
Aethex
#183627388Monday, February 15, 2016 12:20 AM GMT

@Veulix get out
TaskScheduler
#183627529Monday, February 15, 2016 12:22 AM GMT

I think veu is worked with out the for loop it worked, Shortened to only 10 cause otherwise it would be too long: workspace.Baseplate.Transparency = 0.1 wait(1) workspace.Baseplate.Transparency = 0.2 wait(1) workspace.Baseplate.Transparency = 0.3 wait(1) workspace.Baseplate.Transparency = 0.4 wait(1) workspace.Baseplate.Transparency = 0.5 wait(1) workspace.Baseplate.Transparency = 0.6 wait(1) workspace.Baseplate.Transparency = 0.7 wait(1) workspace.Baseplate.Transparency = 0.8 wait(1) workspace.Baseplate.Transparency = 0.9 wait(1) workspace.Baseplate.Transparency = 0.10 It works until the end, then it goes back... e.e Maybe studio is looping, lemme check in normal ROBLOX..
cntkillme
#183627549Monday, February 15, 2016 12:22 AM GMT

lel where's 129,000 it wouldn't be complete without him
Veulix
#183627845Monday, February 15, 2016 12:26 AM GMT

@cntkillme 我是一十二萬九千。
cntkillme
#183628085Monday, February 15, 2016 12:29 AM GMT

I thought you quit
12103net
#183628354Monday, February 15, 2016 12:33 AM GMT

for i=1,10 do workspace.Baseplate.Transparency=i/10 wait(.1) end
Veulix
#183628439Monday, February 15, 2016 12:34 AM GMT

@cntkillme 我正在休息从DOTA2。

    of     1