How do I make a car spawner?

Hey, I am hoping to make a car spawner that will spawn a car in a parking spot.
To sum it up, I am working on a CarWash game called SeaFoamz and it needs a car spawner for customer to be able to go through the wash and drive around the map. My only issue is that i’m a builder and don’t know much about scripting. Does anyone have any ideas or feedback on what I can do?

3 Likes

Well, you would want to build the car and parent it under ServerStorage. Then, whenever you want to spawn a car, in a script you would write:

local car = game.ServerStorage.Car:Clone()
car.Parent = workspace
car.Position = --the position you want.

If your car is a model, make sure it has a primary part and assign it using:

car.PrimaryPart.Position = --the position you want

Hope that helps!

3 Likes

What ? How you gonna finish this game if you don’t know how to script and you don’t have a scripter. Rip

3 Likes

you could grab spawner from a freemodel and change up stuff

4 Likes

We are currently looking for developers, afterwards we will finish the game.

1 Like

Thanks for the help! It works after testing it

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.