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

Repeated print not working help?

Asked by 8 years ago

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..'
1
You didn't close the quote on like 5, and wait is misspelled on line 6. BlackJPI 2658 — 8y
0
you spelled "wait" wrong on line 6 HyperSpeed05 40 — 8y

2 answers

Log in to vote
0
Answered by 8 years ago

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..'

Ad
Log in to vote
0
Answered by 8 years ago

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..")

Answer this question