|
| 25 Mar 2012 08:02 AM |
while true do wait(5) script.Parent.TextTransparency = 1 wait(0.1) script.Parent.TextTransparency = 0.9 wait(0.1) script.Parent.TextTransparency = 0.8 wait(0.1) script.Parent.TextTransparency = 0.7 wait(0.1) script.Parent.TextTransparency = 0.6 wait(0.1) script.Parent.TextTransparency = 0.5 wait(0.1) script.Parent.TextTransparency = 0.4 wait(0.1) script.Parent.TextTransparency = 0.3 wait(0.1) script.Parent.TextTransparency = 0.2 wait(0.1) script.Parent.TextTransparency = 0.1 wait(0.1) script.Parent.TextTransparency = 0 end)
And the output comes up with nothin'! |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:05 AM |
| I sincerely doubt there was no output since you put an unnessacery ')' after end. please post output in future... |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:11 AM |
No worry i fixed it myself, no tyvm to you then.
~ Don't eat me! I'm only a cookie! ~ |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:13 AM |
What do i replace While true do with to make it so it only does it once?
~ Don't eat me! I'm only a cookie! ~ |
|
|
| Report Abuse |
|
|
arundel
|
  |
| Joined: 21 Apr 2008 |
| Total Posts: 5762 |
|
|
| 25 Mar 2012 08:16 AM |
wait(5) for x=-1,0,0.1 do script.Parent.TextTransparency=-x wait(0.1) end |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:18 AM |
| *cough* yea, no thanks to me, pointing out the only bug in the script. *cough* |
|
|
| Report Abuse |
|
|
su8
|
  |
| Joined: 06 Mar 2009 |
| Total Posts: 6334 |
|
|
| 25 Mar 2012 08:19 AM |
Life isn't fair.. :PP Lets play some iOS app? :D? |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:22 AM |
| I'm foruming on my iPod. so technically I'm playing on safari. D: |
|
|
| Report Abuse |
|
|
su8
|
  |
| Joined: 06 Mar 2009 |
| Total Posts: 6334 |
|
|
| 25 Mar 2012 08:23 AM |
OT:
Does your browser close itself often? Because mine does.. I think it's because of full memory?.. duh? |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:26 AM |
:O Arundel that doesn't work :O
And once again i get nothing from the output.
~ Don't eat me! I'm only a cookie! ~ |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:28 AM |
| Bluey actually that wasn't the bug that fixed it :O |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:29 AM |
@su, yes. I have to copy my current script in the clipboard halfway though incase it crashes.
@OP,
while true do wait(5) for x=-1,0,0.1 do script.Parent.TextTransparency=-x wait(0.1) end |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:49 AM |
Ok i got this:
while true do make player walkspeed 0 wait(5) script.Parent.W.TextTransparency = 1 wait(0.1) script.Parent.W.TextTransparency = 0.9 wait(0.1) script.Parent.W.TextTransparency = 0.8 wait(0.1) script.Parent.W.TextTransparency = 0.7 wait(0.1) script.Parent.W.TextTransparency = 0.6 wait(0.1) script.Parent.W.TextTransparency = 0.5 wait(0.1) script.Parent.W.TextTransparency = 0.4 wait(0.1) script.Parent.W.TextTransparency = 0.3 wait(0.1) script.Parent.W.TextTransparency = 0.2 wait(0.1) script.Parent.W.TextTransparency = 0.1 wait(0.1) script.Parent.W.TextTransparency = 0
and about 50 lines more (IT WORKS!) But i want to add that bit when it starts where it makes it player walkspeed 0. But i don't know how to do it. So how do you do it? |
|
|
| Report Abuse |
|
|
|
| 25 Mar 2012 08:52 AM |
| does the script finish with 'end'? |
|
|
| Report Abuse |
|
|
| |
|
|
| 25 Mar 2012 08:59 AM |
Would this work?
while true do game.Players.PlayerAdded:connect(function(Player) repeat wait() until Player.Character Player.Character.Humanoid.Walkspeed = 0 wait(5) script.Parent.W.TextTransparency = 1 wait(0.1) script.Parent.W.TextTransparency = 0.9 wait(0.1) script.Parent.W.TextTransparency = 0.8 wait(0.1) script.Parent.W.TextTransparency = 0.7 wait(0.1) script.Parent.W.TextTransparency = 0.6 wait(0.1) script.Parent.W.TextTransparency = 0.5 wait(0.1) script.Parent.W.TextTransparency = 0.4 wait(0.1) script.Parent.W.TextTransparency = 0.3 wait(0.1)
???? |
|
|
| Report Abuse |
|
|