Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I get a model to move if a certain amount of players are touching it?

Asked by 5 years ago

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:

1for i = 0,100,.1 do
2    script.Parent:TranslateBy(Vector3.new(i,0,0))  
3    wait(.1)           
4end

1 answer

Log in to vote
0
Answered by 5 years ago

This is what i would do:

01while true do
02local part = Your part
03local Occupants = {}
04 
05part.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")
View all 27 lines...

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.

0
If you don't know what Seat.Occupant is: https://developer.roblox.com/en-us/api-reference/property/Seat/Occupant BaconX112X 75 — 5y
0
I only have 1 error saying Touched isn't a valid member of Model. xItzDogey 4 — 5y
Ad

Answer this question