Teleport bug

Description:
There are bug teleport. While player got stuck on floor after teleport. I cant move character.

Reproduction Steps
Repro:

  1. Create new baseplate.
  2. Create part and script.

    Teleport1b
  3. Make sure. Part 1. Name “Teleport”, BrickColor = Blue, Anchored = true, (if want add ParticleEmitter to part?) and Part 2. Name “Tag”, BrickColor = Red, Anchored = true, CanCollide = false.
  4. Script code:
    Teleport>Script:
local Teleport = "Tag"
local deb = false

function Touch(hit)
	local Pos = script.Parent.Parent:findFirstChild(Teleport)
	if hit.Parent:FindFirstChild("Humanoid") ~=nil then
		if deb == false then
			deb = true
			hit.parent:moveTo(Pos.Position)
			wait(1)
			deb = false
		end
	end
end
script.Parent.Touched:connect(Touch)

Tag>Script:

script.Parent.Transparency = 1
  1. build anything this place:
  2. Publish the game.
  3. Run test on game.

I’ve made a game demonstrating this, apart from the instructions above it is a normal baseplate:
The starting place.
Test Teleport - Roblox It’s private, file is shared in private message

Here is a video demonstrating the bug:
robloxapp-20220511-1241235.wmv (950.7 KB)

We’ve filled a ticket into our internal database for this issue, and we will update you when we have further information.

Thanks for the report!

4 Likes

Ive been experience an issue where a well known “Simple Teleporter” model will not teleport anybody if the CanTouch is enabled by a script and then touched. It shows its enabled but the script does not work. No errors.

1 Like