I'm trying to repeat a print function but it stops at the 4th line
1 | print 'Alex Rules' |
2 | wait ( 2.4 ) |
3 | print 'ROBLOX Server Loading!' |
4 | wait ( 2.4 ) |
5 | print 'Loading.. Fixing lag... Securing Functions... |
6 | wiat ( 2.3 ) |
7 | print 'Loaded! Have fun!' |
8 | wait ( 2.5 ) |
9 | print 'Activating anti exploit..' |
There are quite a few errors within this script. I will write the corrected piece of code now:
1 | print 'Alex Rules' |
2 | wait ( 2.4 ) |
3 | print 'ROBLOX Server Loading!' |
4 | wait ( 2.4 ) |
5 | print 'Loading.. Fixing lag... Securing Functions...' |
6 | wait ( 2.3 ) |
7 | print 'Loaded! Have fun!' |
8 | wait ( 2.5 ) |
9 | print 'Activating anti exploit..' |
You are making a few scripting errors. Just use this piece of code instead.
1 | print ( "Alex Rules" ) |
2 | wait( 2.4 ) |
3 | print ( "ROBLOX Server Loading!" ) |
4 | wait( 2.4 ) |
5 | print ( "Loading.. Fixing lag... Securing Functions..." ) |
6 | wait( 2.3 ) |
7 | print ( "Loaded! Have fun!" ) |
8 | wait( 2.5 ) |
9 | print ( "Activating anti exploit.." ) |