How do I sort this out?
local Name = Player.Name PlayerCar = game.Workspace..(Name).Car
I want to be able to make it go into the Workspace and find the Name of the player then inside it 'Car' which is a model.
Try this:
local Name = Player.Name local PlayerCar = workspace[Name].Car