How do I use a vector3 on a player, it's been confusing me.
If by that you mean position, you're going to use one of the following:
--Try putting one of these in the command line when playing in Studio. They all do the same thing. game.Players.Player.Character:MoveTo(Vector3.new(0, 1000, 0)) game.Players.Player.Character:SetPrimaryPartCFrame(Crame.new(0, 1000, 0)) game.Players.Player.Character.PrimaryPart.CFrame = CFrame.new(0, 1000, 0)