A Roblox Community
Would you like to react to this message? Create an account in a few clicks or log in to continue.

A Roblox Community

A community of Robloxians who want to learn to script and build on Roblox Studio.
 
HomeLatest imagesRegisterLog in
If you're a experienced coder make some tutorials! It would really help the site grow.
Make sure you read the rules(Which can be found by clicking here)
If you're a beginner at coding, try some tutorials.
We have many Moderators/Admins watching this site. Contact them with Questions.
Let us know what your favorite sport is. By clicking here to vote (Click here)
This site is becoming inactive. Lets make it active.
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Top posters
blueymaddog
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
naknak
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
Supernapalm
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
m27frogy
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
slayer9365
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
myrco919
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
branefreez
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
ninga95
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
CloneTrooper787
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
raboy117
while true do (loop script) Vote_lcapwhile true do (loop script) Voting_barwhile true do (loop script) Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
while true do (loop script) EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
while true do (loop script) EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
while true do (loop script) EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
while true do (loop script) EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
while true do (loop script) EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
while true do (loop script) EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
while true do (loop script) EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
while true do (loop script) EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
while true do (loop script) EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
while true do (loop script) EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
while true do (loop script) EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
while true do (loop script) EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
while true do (loop script) EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
while true do (loop script) EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
while true do (loop script) EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
while true do (loop script) EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
while true do (loop script) EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
while true do (loop script) EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
while true do (loop script) EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
while true do (loop script) EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 while true do (loop script)

Go down 
5 posters
AuthorMessage
Hydromancer
Novice Scripter
Novice Scripter
avatar


Posts : 47
Join date : 2011-01-29

while true do (loop script) Empty
PostSubject: while true do (loop script)   while true do (loop script) EmptyFebruary 5th 2011, 11:26 pm

While true do states that while the script(s) are true, it repeatedly redoes the script. A basic script with while true do would be:
Code:
while true do
print ("Winnnnnnnnnnnnn!")
end
To loopkill in ROBLOX, the script would be:
Code:
while true do
game.Workspace.Player.Head:Remove() -- replace "Player" with any name
end
To loop anchor, the script would be:
Code:
while true do
game.Workspace.Player.Torso.Anchored = true -- replace "Player" with any name
end
Note that if you loopkill everyone a lot, they'll call you a noob or you'll have a bad reputation. To make a temporary loopkill script (might work):
Code:
while true do
a = game.Workspace.Player -- "a" is a variable
[a].Head:Remove() -- replace "Player" with any name
wait (5)
[a] = game.Lighting -- for a certain reason
end
Send me a message if there is any mistakes with these scripts.
Back to top Go down
slayer9365
Expert Scripter
Expert Scripter
slayer9365


Posts : 233
Join date : 2010-07-31
Age : 29

while true do (loop script) Empty
PostSubject: Re: while true do (loop script)   while true do (loop script) EmptyFebruary 5th 2011, 11:33 pm

this is actually a while function, you do not have to use true for the restraint.
Back to top Go down
Guest
Guest
avatar



while true do (loop script) Empty
PostSubject: Re: while true do (loop script)   while true do (loop script) EmptyFebruary 6th 2011, 2:15 am

Slayer is correct, the while loop does not require a literal condition of true. Also, all of those "scripts" except for the last one would crash your game. The last one would error.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

while true do (loop script) Empty
PostSubject: Re: while true do (loop script)   while true do (loop script) EmptyMarch 9th 2011, 6:56 am

every continueus loop should have a wait() in it to stop the game crashing.
Back to top Go down
Supernapalm
Expert Scripter
Expert Scripter
avatar


Posts : 393
Join date : 2011-01-17

while true do (loop script) Empty
PostSubject: Re: while true do (loop script)   while true do (loop script) EmptyMarch 10th 2011, 9:31 pm

loopkill script? i think you mean a ban script
Code:
[a].Parent = game.Lighting
for the last one. thats what im thinking, excluding the head removal
Back to top Go down
http://hackthissite.org
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

while true do (loop script) Empty
PostSubject: Re: while true do (loop script)   while true do (loop script) EmptyMarch 10th 2011, 11:24 pm

while wait() do

end

:P
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

while true do (loop script) Empty
PostSubject: Re: while true do (loop script)   while true do (loop script) EmptyMarch 11th 2011, 7:27 am

@naknak:

repeat until not wait()

XD
Back to top Go down
Sponsored content





while true do (loop script) Empty
PostSubject: Re: while true do (loop script)   while true do (loop script) Empty

Back to top Go down
 
while true do (loop script)
Back to top 
Page 1 of 1
 Similar topics
-
» How to loop regen creations.
» Loop Kill that never fails
» Script Help
» The Local Script: A Robloxian's Worst Nightmare
» C++ script

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Tutorials and Resources :: Beginner-
Jump to: