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