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

Race code giving an error i've never seen before? [2 Codes]

Asked by
R_alatch 394 Moderation Voter
9 years ago

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:

01wait(2)
02 
03local GameMaps = {}
04 
05function Update(text)
06    for i, player in pairs(game.Players:GetPlayers()) do
07        player.PlayerGui.Display.MainFrame:WaitForChild("Text").Text = tostring(text)
08    end
09end
10 
11for i, games in pairs(game.ServerStorage.Maps:GetChildren()) do
12    table.insert(GameMaps, #GameMaps + 1, games.Name)
13end
14 
15repeat wait(1) until game.Players.NumPlayers > 0
View all 72 lines...

Next, we have this code for the control:

1script.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
5    end
6end)

Help?

Answer this question