|
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? |
|
VeulixJoin Date: 2011-12-24 Post Count: 202 |
Here u go! :)
for i = 1, 100 do
workspace.Baseplate.Transparency + i
wait(i)
end |
|
cntkillmeJoin Date: 2008-04-07 Post Count: 49450 |
divide i by 100, transparency takes a percentage, a value between 0 and 1 which of course you already know |
|
|
Mine was making it stay invisable veulix yours makes it stay visible, I need a combo of the 2 xD |
|
VeulixJoin Date: 2011-12-24 Post Count: 202 |
Ohhh try this
for i = 0, 1 do
workspace.Baseplate.Transparency = i
wait(0.00000000000000000000000000000000001) // Wait the smallest amount of time as possible
end |
|
AethexJoin Date: 2011-10-16 Post Count: 2193 |
...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 |
|
VeulixJoin Date: 2011-12-24 Post Count: 202 |
Nope that wont work cause you cant divide intergers in LUA. |
|
AethexJoin Date: 2011-10-16 Post Count: 2193 |
@Veulix get out |
|
|
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..
|
|
cntkillmeJoin Date: 2008-04-07 Post Count: 49450 |
lel where's 129,000 it wouldn't be complete without him |
|
VeulixJoin Date: 2011-12-24 Post Count: 202 |
@cntkillme
我是一十二萬九千。 |
|
cntkillmeJoin Date: 2008-04-07 Post Count: 49450 |
I thought you quit |
|
12103netJoin Date: 2013-07-08 Post Count: 350 |
for i=1,10 do workspace.Baseplate.Transparency=i/10 wait(.1) end |
|
VeulixJoin Date: 2011-12-24 Post Count: 202 |
@cntkillme
我正在休息从DOTA2。 |
|