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

Mad Bloxxer Script Help ?

Asked by 10 years ago

Mad Bloxxer Script Help its says that

1contestants = ()  -- expected identifier got ')'
01-- Made By Dscpcheatsis10123
02 
03 
04 
05local roundTime = 60 * 5
06local intermissionTime = 20
07local serverstorage = game:GetService("ServerStorage"
08local replicatedstorage = game:GetService("ReplicatedStorage"
09local debris = game:GetService("Debris")
10local remoteEvent = replicatedstorage:WaitForChild("RemoteEvent")
11local maps = serverstorage:WaitForChild("Maps")
12local mapHolder = game.Workspace:WaitForChild("MapHolder")
13 
14 
15while true do
View all 56 lines...

1 answer

Log in to vote
0
Answered by
Emg14 10
10 years ago

A hint gave it away: Identifier Look at this sample snippet code:

1local identifier = value

Now I think what he's trying to do is to make a table like this:

1local tableidentifiername =  {}

So the whole code will be:

01contestants = {}
02view source
0301  -- Made By Dscpcheatsis10123
0402  
0503  
0604  
0705  local roundTime = 60 * 5
0806  local intermissionTime = 20
0907  local serverstorage = game:GetService("ServerStorage")
1008  local replicatedstorage = game:GetService("ReplicatedStorage")
1109  local debris = game:GetService("Debris")
1210  local remoteEvent = replicatedstorage:WaitForChild("RemoteEvent")
1311  local maps = serverstorage:WaitForChild("Maps")
1412  local mapHolder = game.Workspace:WaitForChild("MapHolder")
1513  
View all 46 lines...
0
Oooops i made i mistake see the line with: contestans = ()? Change that to contestants = {} Emg14 10 — 10y
0
I got the same thing again :/ local spawn[spawnIndex] dscpcheatsis10123 0 — 10y
0
I edited it, it should now work! Emg14 10 — 10y
Ad

Answer this question