Im making a racing game and want to have cars that you're required to have a gampass to drive so how would I make it possible so that if the player doesn't have the gamepass, the script would make the player jump out of the car.
Try this
01 | local passId = 0000000 -- change this to your game pass ID. |
02 |
03 | function isAuthenticated(player) -- checks to see if the player owns your pass |
04 | return game:GetService( "GamePassService" ):PlayerHasPass(player, passId) |
05 | end |
06 |
07 | script.Parent.VehicleSeat.ChildAdded:connect( function (obj) |
08 | if game.Players:FindFirstChild(obj.Part 1. Name) then |
09 | plr = game.Players:FindFirstChild(obj.Part 1. Name) |
10 | end |
11 |
12 | if plr and not isAuthenticated(plr) then |
13 | plr.Character.Humanoid.Jump = true |
14 | print (plr.Name.. " is not authorized to use this vehicle" ) |
15 | end |
16 | end ) |
Closed as Not Constructive by evaera
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?