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)