How do I make the stuff in line 3 worded properly? So that it finds the Players Car in the workspace.
game.ReplicatedStorage.ArrowLeft.OnServerEvent:Connect(function(plr) local plrName = plr.Name game.Workspace[plrName"'s Car"].Body.ELS.Lightbar.on.Value = 11 end)
game.Workspace[plrName .. "'s Car"].Body.ELS.Lightbar.on.Value = 11
You use 2 periods (..) to combine the 2 strings.