Answered by
5 years ago Edited 5 years ago
I'm not sure about how to go about this. I know how to make someone teleport if they're touching something so my suggestion is that you maybe make a part on the ground or something, or somehow make it so players are automatically touching it. Make sure it's transparent and cancollide to checked on, so it would look better of course. That's what I would do, and I'd go about this by putting this script under the part.
02 | local TeleportService = game:GetService( "TeleportService" ) |
03 | local gameID = 4690177594 |
05 | function onTouched(hit) |
06 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
08 | TeleportService:Teleport(gameID, player) |
12 | script.Parent.Touched:connect(onTouched) |
If this isn't what you wanted (which I know it was not), it's okay. Maybe take this to consideration and tweak it yourself if you want. If it did work, make sure to accept it, if you have any other questions I'll try to stay active enough to answer them!