Hello. I have created a place in Asset Manager and wanted to teleport when player touches a part. But it gives error 769 in Studio and error 773 in Roblox for players that do not own game.
I have enabled everything in my Game Setting including Third Party Teleports but it seems to not work. Any help is appreciated
When you use a touched event, any part can collide with “3v3JoinTouch.” This can include a part that is not part of a character, which may be causing the teleport error. To fix this, do an if statement for if hit.Parent:FindFirstChild(“Humanoid”). Then, do another if statement for if game.Players:GetPlayerFromCharacter(hit.Parent).
This will make sure that the script won’t attempt to teleport some random base part, but a player that actually does touch the part.