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

My teleport script isn't detecting the player when it is in a moving car, can I get some help?

Asked by 5 years ago
Edited 5 years ago

Hello, I'm in the process of making a similar game like Camping. I have 1 problem though, my Teleport script isn't detecting the player when he hits the main Teleport brick. The player is in a programmed car that moves forward to the main block. He is also in a Seat unable to move until the player is teleported to the next game. Is one of those the issue of my Teleport script not detecting the Player? IF so, is there a way I could fix this issue?

Here is the script:

01local TeleportService = game:GetService("TeleportService")
02local gameID = 4459522530
03 
04 
05function onTouched(hit)
06 local player = game.Players:GetPlayerFromCharacter(hit.Parent)
07 if player then
08 TeleportService:teleport(gameID, player)
09 end
10end
11 
12script.parent.Touched:Connect(onTouched)
0
Post the script. JayShepherdMD 147 — 5y
0
No edit your post and put it in a code-block. hitonmymetatables 50 — 5y
0
Alright I posted the script Abhay108 0 — 5y
0
Did you test this in the real game,cuz we cannot teleport in studio. TheRealPotatoChips 793 — 5y
0
Yeah I did test it in an actual server, it's more of that the game isn't detecting the player when it's in the car. Abhay108 0 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

Try this put a regular script in the part that you are trying to make that teleports you

1local TeleportService = game:GetService("TeleportService")
2local Place = (Game Id here)
3 
4script.Parent.Touched:Connect(function(hit)
5    local player = game.Players:GetPlayerFromCharacter(hit.Parent)
6    if player then
7        TeleportService:Teleport(Place, player)
8    end
9end)
0
Here is the issue, it's not the teleport script, it's more of how the game isn't detecting the player when it's in the car. This script would work if I just walked to the part, but I want the player to teleport when it's in the car. Abhay108 0 — 5y
Ad

Answer this question