#Cart Ride Game Help
1 messages · Page 1 of 1 (latest)
You need help with script
But the problem is that I charge for my help
how much
I don’t take robux
local Seat: Seat = script.Parent --// parent this script to a seat
local cart = Seat:FindFirstAncestorOfClass("Model")
local lastEmptyTime = nil
task.spawn(function()
while Seat and Seat.Parent do
if Seat.Occupant == nil then
if not lastEmptyTime then
lastEmptyTime = tick()
elseif tick() - lastEmptyTime >= 10 then
if cart and cart.Parent then
cart:Destroy()
break
end
end
else
lastEmptyTime = nil
end
task.wait(1)
end
end)
there ya go 👍 no charge..
** You are now Level 1! **
parent it to the seat
Shit