Race code giving an error i've never seen before? [2 Codes]
So, basically, I'm getting the error "Value cannot be assigned to Script 'Workspace.Map1.Finish.Control', Line 3". I've never gotten this error, and could use some help.
So, first this is the main code:
06 | for i, player in pairs (game.Players:GetPlayers()) do |
07 | player.PlayerGui.Display.MainFrame:WaitForChild( "Text" ).Text = tostring (text) |
11 | for i, games in pairs (game.ServerStorage.Maps:GetChildren()) do |
12 | table.insert(GameMaps, #GameMaps + 1 , games.Name) |
15 | repeat wait( 1 ) until game.Players.NumPlayers > 0 |
17 | Update( "Welcome to motioning_relatch's Race!" ) |
19 | Update( "Lets start by choosing a random map." ) |
22 | MapName = GameMaps [ math.random( 1 , #GameMaps) ] |
23 | Map = game.ServerStorage.Maps:FindFirstChild(MapName) |
25 | MapClone.Parent = workspace |
28 | Update( "The map is " .. Map.Name .. " created by " .. Map:FindFirstChild( "Owner" ).Value .. "!" ) |
30 | Update( "Teleporting players to the map." ) |
33 | for i, player in pairs (game.Players:GetPlayers()) do |
34 | player.Character:FindFirstChild( "Torso" ).Anchored = true |
35 | local Spawn = math.random( 1 , 3 ) |
38 | player.Character:MoveTo(MapClone:FindFirstChild( "Spawn1" ).Position) |
39 | local Spawn = math.random( 1 , 3 ) |
40 | elseif Spawn = = 2 then |
41 | player.Character:MoveTo(MapClone:FindFirstChild( "Spawn2" ).Position) |
42 | local Spawn = math.random( 1 , 3 ) |
43 | elseif Spawn = = 3 then |
44 | player.Character:MoveTo(MapClone:FindFirstChild( "Spawn3" ).Position) |
45 | local Spawn = math.random( 1 , 3 ) |
49 | Update( "All players have been teleported to the map." ) |
51 | Update( "Instructions: Race eachother to the end to win!" ) |
61 | for i, player in pairs (game.Players:GetPlayers()) do |
62 | player.Character:FindFirstChild( "Torso" ).Anchored = false |
65 | repeat wait( 0.4 ) until MapClone.Finish.Touched = = true |
66 | Update( "The winner of the race was " .. MapClone:FindFirstChild( "Winner" ).Value .. " who will recieve 100 points!" ) |
68 | WinnerPlayer = game.Players:FindFirstChild(MapClone:FindFirstChild( "Winner" ).Value) |
69 | WinnerPlayer:FindFirstChild( "leaderstats" ).Points.Value = WinnerPlayer:FindFirstChild( "leaderstats" ).Points.Value + 100 |
71 | Update( "Destroying current map." ) |
Next, we have this code for the control:
1 | script.Parent.Touched:connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | script.Parent.Touched.Value = true |
4 | script.Parent:FindFirstChild( "Winner" ).Value = hit.Parent.Name |
Help?