i tried to make car spawn
but it falls down like it got no collision
script.Parent.Activated:Connect(function()
local player = game.Players.LocalPlayer
local carpos = player.Character.HumanoidRootPart.Position + Vector3.new(0, 0, 5)
local vaz = workspace.Vaz.model:Clone()
vaz.Parent = workspace
vaz:MoveTo(carpos)
end)