Getting an error in my code, need a little help

I’m getting an error on my teleport script and I’m unable to solve the issue. Need a little help.

Here is the script.

local teleport1 = game.Workspace.Teleport1
--currentlyTeleporting is a bool vlaue

script.Parent.Touched:Connect(function(partThatTouched)
	if partThatTouched and partThatTouched.Parent and partThatTouched.Parent.Humanoid and partThatTouched.Parent.currentlyTeleporting.Value == false then
		local character = partThatTouched.Parent:FindFirstChild("Humanoid")
		local teleportLocation = CFrame.new(teleport1.CFrame.X, teleport1.CFrame.Y + 5, teleport1.CFrame.Z)
		character:SetPrimarytPartCFrame(teleportLocation)
		
		local teleportingValue = character.currentlyTeleporting
		teleportingValue.Value = true
		wait(3)
		teleportingValue.Value = false
	end
end)

The error I’m getting

 SetPrimarytPartCFrame is not a valid member of Humanoid "Workspace.Mufazl.Humanoid"  -  Server - Script:8
``

character.Parent:SetPrimarytPartCFrame(teleportLocation)

Still getting an error

Updated code:

local teleport1 = game.Workspace.Teleport1
--currentlyTeleporting is a bool vlaue

script.Parent.Touched:Connect(function(partThatTouched)
	if partThatTouched and partThatTouched.Parent and partThatTouched.Parent.Humanoid and partThatTouched.Parent.currentlyTeleporting.Value == false then
		local character = partThatTouched.Parent:FindFirstChild("Humanoid")
		local teleportLocation = CFrame.new(teleport1.CFrame.X, teleport1.CFrame.Y + 5, teleport1.CFrame.Z)
		character.Parent:SetPrimarytPartCFrame(teleportLocation)
		
		local teleportingValue = character.currentlyTeleporting
		teleportingValue.Value = true
		wait(3)
		teleportingValue.Value = false
	end
end)

Wait a second, on the Roblox Documentation it says its deprecated. What does that mean?

EDIT: Ahh it does nothing when its called… Damn…

Oh, you can’t use that anymore. I believe the equivalent is :PivotTo()

1 Like

Use PivotTo to move the model to your desired location. You also need to use it on the model, not the humanoid.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.