generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Scripting Helpers
Home Search
 

Re: Why this no work?

Previous Thread :: Next Thread 
marshallclan is not online. marshallclan
Joined: 26 Dec 2009
Total Posts: 343
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
blueymaddog is not online. blueymaddog
Joined: 23 Sep 2009
Total Posts: 5459
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
marshallclan is not online. marshallclan
Joined: 26 Dec 2009
Total Posts: 343
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
marshallclan is not online. marshallclan
Joined: 26 Dec 2009
Total Posts: 343
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 is not online. 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
blueymaddog is not online. blueymaddog
Joined: 23 Sep 2009
Total Posts: 5459
25 Mar 2012 08:18 AM
*cough* yea, no thanks to me, pointing out the only bug in the script. *cough*
Report Abuse
su8 is not online. 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
blueymaddog is not online. blueymaddog
Joined: 23 Sep 2009
Total Posts: 5459
25 Mar 2012 08:22 AM
I'm foruming on my iPod. so technically I'm playing on safari. D:
Report Abuse
su8 is not online. 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
marshallclan is not online. marshallclan
Joined: 26 Dec 2009
Total Posts: 343
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
marshallclan is not online. marshallclan
Joined: 26 Dec 2009
Total Posts: 343
25 Mar 2012 08:28 AM
Bluey actually that wasn't the bug that fixed it :O
Report Abuse
blueymaddog is not online. blueymaddog
Joined: 23 Sep 2009
Total Posts: 5459
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
marshallclan is not online. marshallclan
Joined: 26 Dec 2009
Total Posts: 343
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
blueymaddog is not online. blueymaddog
Joined: 23 Sep 2009
Total Posts: 5459
25 Mar 2012 08:52 AM
does the script finish with 'end'?
Report Abuse
marshallclan is not online. marshallclan
Joined: 26 Dec 2009
Total Posts: 343
25 Mar 2012 08:53 AM
yes.
Report Abuse
marshallclan is not online. marshallclan
Joined: 26 Dec 2009
Total Posts: 343
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
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripting Helpers
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image