This script crashes studio it does not even run :(
01 | coroutine.resume(coroutine.create( function () |
02 | while true do |
03 | MagicSym = 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 = Vector 3. 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 |
This is what I made of it. The only problem is the crashing
Coroutines.
http://wiki.roblox.com/index.php?title=Coroutines
01 | coroutines.resume(coroutine.create( function () |
02 | while true do |
03 | print ( "looping with each other" ) |
04 | wait() |
05 | end |
06 | end )) |
07 | while true do |
08 | print ( "its just one script" ) |
09 | wait() |
10 | end |
Reminder. DON'T DO THIS..
1 | script.Parent.Touched:connect( function () |
2 | coroutines.resume(coroutine.create( function () |
3 | while true do |
4 | print ( "looping with each other" ) |
5 | wait() |
6 | end |
7 | end )) |
8 | end ) |
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.
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() |
04 | coroutine.resume(coroutine.create( function () |
05 | while true do |
06 | MagicSym = 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 = Vector 3. new( 30 , 1 , 30 ) |
15 | MagicSym.TopSurface = "Smooth" |