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

How Would Make It Where If I Go Near The Car It Pops Up A GUI Saying Press F To Enter Vehicle?

Asked by
FPSVision -14
7 years ago

I’ve already did the scripting where it pops up the screen gui but I want once I press F It’ll make me go into the nearest VehicleSeat aka car next to me.

Here’s The Script Where The GUI Would Pop Up. Please Help Finish

011
02local part = workspace.Part --Change the "part" to the name of the part
032
04 
053
06part.Touched:connect(function() --I assume this is a local script put inside the frame.
074
08    script.Parent.Visible = true
095
10end)
11 
12 
13 
14—Also This
15 
View all 25 lines...

1 answer

Log in to vote
0
Answered by 7 years ago
Edited 7 years ago
01--ScreenGui->LocalScript
02local ply = game.Players.LocalPlayer
03local contextService = game:GetService("ContextActionService")
04 
05local function seatPlayer(car)
06    --Insert your own
07end
08local function findClosestCars()
09    local ta = game.Workspace:FindFirstChild("Cars") and  game.Workspace:FindFirstChild("Cars"):GetChildren() or game.Workspace:GetChildren()
10    local closest = nil
11    local root = ply.Character.HumanoidRootPart
12    local max = 5
13    local shortestDis = max
14    for i,v in pairs(ta) do
15        if v.Name == "Car" then
View all 28 lines...
0
I haven't scripted in a while what would I put here. "local function seatPlayer(car) --Insert your own end" FPSVision -14 — 6y
Ad

Answer this question