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

Expected <eof>, got 'end' at line 110?

Asked by
Llorko 10
5 years ago

The error keeps happening at line 110 which I marked (not on the real script) this is the error Expected <eof>, got 'end' whats wrong???

001bolt.Size = Vector3.new(.1,.1,.1)
002bolt.BrickColor = BrickColor.new("New Yeller")
003bolt.CanCollide = false
004bolt.Anchored = true
005bolt.Material = "Neon"
006 
007 
008 
009 
010local function ShootElectrode(from,too)
011    local lastpos = from
012    local stop = 2
013    local off = 2
014    local range = 100
015 
View all 123 lines...
0
Btw the error is on the End Llorko 10 — 5y
0
You probably have an extra end to one of your loops, if-statements, or functions. Look through your code. blarp_blurp645 63 — 5y

1 answer

Log in to vote
1
Answered by
Psudar 882 Moderation Voter
5 years ago

At line 110 you have an extra end, so the script thinks youre closing the if-statement.

Ad

Answer this question