Here is the script; on line 8 where it says game.Players[driver.Value]...
The output always says; "Script:8: bad argument #2 to '?' (string expected, got Object)"
local camlight = script.Parent.Parent:WaitForChild("CamLight") script.Parent.Touched:connect(function(part) if part.Name == "VehicleSeat" then local driver = part.Values:WaitForChild("Driver") game.Players[driver.Value].PlayerGui.ChatMessage.MessageValue.Value = "Caution!" end end)
I've tried the script with just '[driver]' and at the end of line 8 'MessageValue'