Vector3 and CFrame conversion?
Hiaa guys. Sorry again sorry for all the questions ;). Quick quesion here, about Vector3 and CFrame values. I want to know how to convert a value from CFrame to Vector3 and vice - versa. Here's an example:
02 | blue = game.Workspace.BlueSpawn |
03 | red = game.Workspace.RedSpawn |
05 | players = game.Players:GetChildren() |
08 | print (player.Value.Value) |
09 | if player.Value.Value = = "blue" then |
10 | player.Character.Torso.CFrame = CFrame.new(Vector 3. new(blue.Position)) |
11 | print (player.Character.Torso.CFrame) |
13 | player.Character.Torso.CFrame = CFrame.new(Vector 3. new(red.Position)) |
14 | print (player.Character.Torso.CFrame) |
18 | for i,v in pairs (players) do |
21 | Vteam = Instance.new( "StringValue" ) |
23 | Var = math.random( 1 , 2 ) |
Sorry if the script is a bit long. If you find a errors within the script, speak up! (BTW the script is supposed to create a string value for each player then pick a random team color, from which the player will be teleported to the corresponding Part with that color.)
THX!!