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

expected <eof> got 'else'. any help?

Asked by 4 years ago
01local gamepass = 16789429
02local market = game:GetService("MarketplaceService")
03 
04game.Players.PlayerAdded:Connect(function(player)
05    player.CharacterAdded:Connect(function(Character)
06        if market:UserOwnsGamePassAsync(player.UserId, gamepass) then
07            local replicatedStorage = game:GetService("ReplicatedStorage")
08            replicatedStorage.Remotes.Lift.OnServerEvent:Connect(function(player)
09                player.leaderstats.Views.Value = player.leaderstats.Views.Value + 2
10            end)
11 
12            replicatedStorage.Remotes.Lift2.OnServerEvent:Connect(function(player)
13                player.leaderstats.Views.Value = player.leaderstats.Views.Value + 4
14            end)
15        end
View all 30 lines...

Dont mind the print i was bored and needed to see where the script failed

2 answers

Log in to vote
1
Answered by 4 years ago
Edited 4 years ago
01local gamepass = 16789429
02local market = game:GetService("MarketplaceService")
03 
04game.Players.PlayerAdded:Connect(function(player)
05    player.CharacterAdded:Connect(function(Character)
06        if market:UserOwnsGamePassAsync(player.UserId, gamepass) then
07            local replicatedStorage = game:GetService("ReplicatedStorage")
08            replicatedStorage.Remotes.Lift.OnServerEvent:Connect(function(player)
09                player.leaderstats.Views.Value = player.leaderstats.Views.Value + 2
10            end)
11 
12                    replicatedStorage.Remotes.Lift2.OnServerEvent:Connect(function(player)
13                player.leaderstats.Views.Value = player.leaderstats.Views.Value + 4
14            end)
15        else -- they dont own the gamepass (need to keep inside everything)
View all 28 lines...
Ad
Log in to vote
1
Answered by 4 years ago

You're putting the "else" statement outside the function where you call the "if" statement.....not valid. Put lines 19 and 30 in between 14 and 15

Answer this question