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:
01 | local TeleportService = game:GetService( "TeleportService" ) |
02 | local gameID = 4459522530 |
05 | function onTouched(hit) |
06 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
08 | TeleportService:teleport(gameID, player) |
12 | script.parent.Touched:Connect(onTouched) |