I don't understand why this doesn't work:
-- Note that when I use a normal (3, 444, 33) argument it works. game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new((Vector3.new(game.Workspace.Spawns.Spawn1.CFrame)))
-- Note that when I use a normal (3, 444, 33) argument it works. game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(game.Workspace.Spawns.Spawn1.Position)
Because the script wants a Vector3 instead of the CFrame value of the of the item to teleport to, Spawn1's Position is already in Vector3, so why not use that.
Try this:
game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(Vector3.new(game.Workspace.Spawns.Spawn1.Position))
I think it has to beSpawn1.Position
.
Locked by adark and TheMyrco
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?