of     1   

needathinkholdon
#183025960Friday, February 05, 2016 4:37 AM GMT

Trying to make 2 way teleporter this is the code for the first teleporter and i went to test it but it would not teleport me to the second one and I cant figure out why enabled = true Tele2 = game.Workspace.Tele2 script.Parent.Touched:connect(function(hit) local humanoid = hit.Parent:FindFirstChild("Humanoid") if humanoid ~= nil and enabled == true then enabled = false hit.Parent.CFrame = Tele2.CFrame - Vector3(0,-5,0) wait(2) enabled = true end end)
cofunction
#183026079Friday, February 05, 2016 4:40 AM GMT

hit.Parent is the character so it's a model. A model does not have CFrame. hit.Parent.Torso.CFrame = CFrame.new(Tele2.Position + Vector3.new(0, -5, 0)) should work. #Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217")
needathinkholdon
#183026176Friday, February 05, 2016 4:41 AM GMT

my bad i had humanoid.Cframe before but then i tried hit.Parent. ill try what you suggested
needathinkholdon
#183026468Friday, February 05, 2016 4:47 AM GMT

Still nada maybe i just should try making the script some other way?
needathinkholdon
#183026530Friday, February 05, 2016 4:49 AM GMT

Oh i got it man thanks :D

    of     1