|
| 23 Oct 2011 05:16 PM |
I got a working transparency script, but when I go to play mode the base wont go transparent?
its like
game.Workspace.Base.Transparency=.1
wait(1)
so on....
|
|
|
| Report Abuse |
|
|
| |
|
drmiewlo
|
  |
| Joined: 14 Mar 2012 |
| Total Posts: 1782 |
|
|
| 23 Oct 2011 05:18 PM |
workspace.Base.Transparency = 0.1 wait(1)
if you want it to flick on and off transparent...
base =workspace.Base repeat for 1,10 do base.Transparency = base.Transparency - 0.1 wait(1) end for 1,10 do base.Transparency = base.Transparency + 0.1 wait(1) end until Base == nil |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 23 Oct 2011 05:19 PM |
Weird...
1. Let's see the full script. Just in case of spelling errors
2. I might know your problem, let me see the full script first. |
|
|
| Report Abuse |
|
|
drmiewlo
|
  |
| Joined: 14 Mar 2012 |
| Total Posts: 1782 |
|
|
| 23 Oct 2011 05:19 PM |
| Base in last line should be base |
|
|
| Report Abuse |
|
|
|
| 23 Oct 2011 05:20 PM |
| No, like the script wont start, when I go Into the game. |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 23 Oct 2011 05:20 PM |
workspace.Base.Transparency = 0.1 wait(1)
if you want it to flick on and off transparent...
while true do base =workspace.Base for 1,10 do base.Transparency = base.Transparency - 0.1 wait(1) end for 1,10 do base.Transparency = base.Transparency + 0.1 wait(1) end end
|
|
|
| Report Abuse |
|
|
drmiewlo
|
  |
| Joined: 14 Mar 2012 |
| Total Posts: 1782 |
|
|
| 23 Oct 2011 05:23 PM |
I just like repeat better ^^^
If you post the whole script we can help you. |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 23 Oct 2011 05:35 PM |
^
Why, while true do also repeats forever. Repeats repeat until something happens when you say. |
|
|
| Report Abuse |
|
|