How would I get a model to move if there is a certain amount of players touching it? I'm trying to get a vehicle to move by itself when there are at least 5 players inside it.
This is the code I have so far, it gets the vehicle to move on its own:
1 | for i = 0 , 100 ,. 1 do |
2 | script.Parent:TranslateBy(Vector 3. new(i, 0 , 0 )) |
3 | wait(. 1 ) |
4 | end |
This is what i would do:
01 | while true do |
02 | local part = Your part |
03 | local Occupants = { } |
04 |
05 | part.Touched:Connect( function (hit) |
06 |
07 | for i,v in pairs (hit.Parent.model:GetChildren()) do -- This is just an example of a model. |
08 | if v:IsA( "VehicleSeat" ) then |
09 | if v.Occupant ~ = nil then |
10 | table.insert(Occupants,v.Occupant.Parent) |
11 | end |
12 | end |
13 | end |
14 |
15 | print ( "There are " ..#Occupants.. " on this vehicle" ) |
Im assuming that you mean that 5 players have to be seated in the model. I don't really know what you mean with "inside the vehicle."
I hope this helps, if this doesn't help just send a message.