Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local telePart = script.Parent
- local TeleportService = game:GetService("TeleportService")
- local placeID = 7139906808
- local canTeleport = true
- local function otherGame(otherPart)
- local player = game.Players:FindFirstChild(otherPart.Parent.Name)
- if player and canTeleport then
- canTeleport = false
- TeleportService:Teleport(placeID, player)
- end
- end
- telePart.Touched:Connect(otherGame)
Add Comment
Please, Sign In to add comment