Teleporter causing players to go invisible?

A lot of my players have been reporting and I’ve seen it myself that sometimes people are just invisible. One of my members told me it was when you go through the door that teleports you.
So would anything in this script cause that to happen? Cuz some players are invisible on some players screens but not others.

local jailPart = game.Workspace.MPJailTeleport.MPJailLocation
local mpPart = game.Workspace.MPJailTeleport.MPHQLocation



script.Parent.Touched:Connect(function(hit)
	if hit.Parent:FindFirstChild("Humanoid") then
		hit.Parent.HumanoidRootPart.Position = jailPart.Position
	end
end)

This may work better although I don’t know for sure. :smile:

local jailPart = game.Workspace.MPJailTeleport.MPJailLocation
local mpPart = game.Workspace.MPJailTeleport.MPHQLocation



script.Parent.Touched:Connect(function(hit)
	if hit.Parent:FindFirstChild("Humanoid") then
		hit.Parent.HumanoidRootPart.CFrame = jailPart.CFrame
	end
end)
2 Likes

I will try this thank you. :smile:

ASJDNAJSBNDASJBNDAHJSBDHASBDHASBDHABSDHABSDH :sunglasses:

1 Like