of     1   

NanoRaidz
#183424537Friday, February 12, 2016 9:53 AM GMT

I have a car in my map that I'm almost done making and i wanna make the car so only you can enter it. there will be 3 cars and 3 players, each can only enter 1 car, so can anyone please help me with that, or is that not possible? Also I'm really really new to scripting aswel so tying making it simple as possible :D
eleye
#183424785Friday, February 12, 2016 10:09 AM GMT

game.Players.PlayerAdded:connect(function(plr) -- put code that makes the players vehicle spawn here local plrvalue = Instance.new("StringValue", game.Workspace) plrvalue.Name = plr.Name plrvalue.Value = plr.Name local vehicle = game.Workspace.Vehicle -- vehicle name here local vehicleseat = vehicle.VehicleSeat -- name of the vehicles driver seat here if plrvalue == plr.Name then vehicleseat.CanCollide = true else vehicleseat.CanCollide = false end end)
NanoRaidz
#183485559Saturday, February 13, 2016 5:17 AM GMT

Do I paste that scrip into the car model?
AkuFriggus
#183485631Saturday, February 13, 2016 5:18 AM GMT

No, make a script in workspace, and where it says Vehicle Name Here, put the name of the model of the car you're using.
NanoRaidz
#183486214Saturday, February 13, 2016 5:29 AM GMT

-- put code that makes the players vehicle spawn here I'm very sorry but what do you mean by that?

    of     1