how to make a stand behind your player? with vector 3
01 | local repStorage = game:GetService( "ReplicatedStorage" ) |
02 | local RemoteEventFolder = repStorage:WaitForChild( "RemoteEvents" ) |
04 | local function SummonStand(plr) |
05 | local Stand = repStorage.Stands.TheWorld.Stand:Clone() |
06 | Stand.Parent = plr.Character |
07 | Stand.Position = plr.Character.HumanoidRootPart.Position + Vector 3. new( 0 , 1 , 3 ) |
10 | RemoteEventFolder.SummonStand.OnServerEvent:Connect(SummonStand) |
tried this script but vector 3 is not a valid member vector 3
Im kinda bad at vector3 and that type of stuff
Also will i need to take into the orienation of the player or is that not nessary