#Teleport not working
1 messages · Page 1 of 1 (latest)
local startpart = script.Parent
startpart.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
game.ReplicatedStorage.ShowTransition:FireClient(player)
task.wait(0.5)
local character = player.Character
character.HumanoidRootPart.Cframe = game.Workspace.limboMirror.CFrame
end
end)
It’s because ur not setting an actual property lol simple mistype
CFrame rather than Cframe for “character.HumanoidRootPart.Cframe “
And a lil practice I see is setting the primary part cframe rather than directly the root part, it’ll be the same just looks clean
@tired mist u have a tp script?