when i use clone the car wont let me sit on the vehicle seat
but when i manully put the car in workspace then it let me sit
this is my script for the car spawner, i use billboard gui:
local car = game.ReplicatedStorage:WaitForChild("Car")
local debounce = false
local clickCar = script.Parent.MouseButton1Click
function notification()
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "Error",
Text = "You're doing this to fast",
Icon = "",
Duration = "4"
})
end
clickCar:Connect(function()
if debounce == false then
debounce = true
local model = car:Clone()
model.Parent = workspace
wait(10)
debounce = false
end
wait(0.1)
if debounce == true then
wait(0.2)
notification()
end
end)