Like maybe make them jump or kick them, and even pop up a prompt purchase of the gamepass
Asking for scripts isnt allowed.... but i guess this will help with gamepasses https://developer.roblox.com/articles/Game-Passes-One-Time-Purchases
I only how to make the only driveable by selected players.
put a script in the seat, and put this in the script:
NAME = ("PLAYERNAME") -- Player Name
function onTouched(hit)
if hit.Parent.ClassName == "Model" and hit.Parent.Name == NAME then
else
if hit.Parent.ClassName == "Model" then
hit.Parent.Humanoid.Jump = true
end
end
end
script.Parent.Touched:connect(onTouched)
I am currently making it so it kicks the person and when I do make it ill answer this again.
Tell me if you want it to be multiple people.
Closed as Not Constructive by User#24403 and User#5423
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?