Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is it possible for another part of a script run while you have a for loop?

Asked by 9 years ago

This script crashes studio it does not even run :(

01coroutine.resume(coroutine.create(function()
02while true do
03MagicSym = Instance.new("Part")
04    MagicSym.Parent = me.Character.Torso
05    MagicSym.Anchored = true
06    MagicSym.CanCollide = false
07    MagicSym.formFactor = "Symmetric"
08    MagicSym.BrickColor = BrickColor.new("New Yeller")
09    MagicSym.Transparency = 1
10    MagicSym.Name = "MagicSym"
11    MagicSym.Size = Vector3.new(30, 1, 30)
12    MagicSym.TopSurface = "Smooth"
13    MagicSym.BottomSurface = "Smooth"
14    MagicSym.CFrame = me.Character.Torso.CFrame*CFrame.new(0,-3, 0)
15 
View all 39 lines...

This is what I made of it. The only problem is the crashing

2 answers

Log in to vote
0
Answered by
Nickoakz 231 Moderation Voter
9 years ago

Coroutines.

http://wiki.roblox.com/index.php?title=Coroutines

01coroutines.resume(coroutine.create(function()
02while true do
03print("looping with each other")
04wait()
05end
06end))
07while true do
08print("its just one script")
09wait()
10end

Reminder. DON'T DO THIS..

1script.Parent.Touched:connect(function()
2coroutines.resume(coroutine.create(function()
3while true do
4print("looping with each other")
5wait()
6end
7end))
8end)

You will lag the server because when you create a co-routine, it's creating another thread. Too many thread's will degrade server performance. You'll need to ask another question on how to kill co-routines.

0
Yeah I remember doing the same mistake a while back, don't do it fdfxd 50 — 9y
0
Although the game runs perfectly fine, any server sided script is slower with that mistake. Nickoakz 231 — 9y
Ad
Log in to vote
0
Answered by 9 years ago
01--If you mean you want the script to run with a infinite loop effectively then add a
02--term from Rbx.Lua called break****
03--Or if you mean just run it with no infinite loops just add a wait() in between while true do wait()
04coroutine.resume(coroutine.create(function()
05while true do
06MagicSym = Instance.new("Part")
07    MagicSym.Parent = me.Character.Torso
08    MagicSym.Anchored = true
09    MagicSym.CanCollide = false
10    MagicSym.formFactor = "Symmetric"
11    MagicSym.BrickColor = BrickColor.new("New Yeller")
12    MagicSym.Transparency = 1
13    MagicSym.Name = "MagicSym"
14    MagicSym.Size = Vector3.new(30, 1, 30)
15    MagicSym.TopSurface = "Smooth"
View all 45 lines...

Answer this question