Hello. I’ve been working on an obby recently that contained usage of those jeeps. I’d like to make it so an unoccupied car respawns after 60 seconds of time. Can anybody help?
You can put a script in the jeep looks like this :
local Jeep = --INITIALIZE YOUR JEEP MODEL
local Seat = --INITIALIZE YOUR SEAT
local Time = 0
while wait(1) do
if Seat.Occupant = nil and Time ~= 60 then
Time += 1
elseif Seat.Occupant then
Time = 0
elseif Time = 60 then
local RespawnJeep = Jeep:Clone()
RespawnJeep.Parent = workspace
RespawnJeep.Position = --THE CAR SPAWNER POSITION
Jeep:Destroy()
end
end