1 | local Humanoid = script.Parent.Humanoid |
2 | local Torso = script.Parent.Torso |
3 | local goal = game.Workspace.Goal |
4 | local model = script.Parent |
5 | wait( 5 ) |
6 | Humanoid:MoveTo(goal.Position) |
7 | local cframe = model.PrimaryPart.CFrame |
8 |
9 | model:SetPrimaryPartCFrame(cframe * CFrame.Angles( 0 , math.rad(- 90 ), 0 )) |
I want the humanoid to move to the goal after 5 seconds, then i want to humanoid to turn 90 degrees. What the humanoid does is turning 90 degrees , it does not walk
while if i put this part of the script away:
1 | local cframe = model.PrimaryPart.CFrame |
2 |
3 | model:SetPrimaryPartCFrame(cframe * CFrame.Angles( 0 , math.rad(- 90 ), 0 )) |
it works again. How can i make a humanoid move and then turn 90 degrees properly?
There are variables that are unnecessary for right now, but here is my fixed code:
and all you need was to add Vector3.new
1 | local Humanoid = script.Parent:WaitForChild( "Humanoid" ) |
2 | local goal = workspace:WaitForChild( "Goal" ) |
3 | local cFrame = script.Parent:GetPrimaryPartCFrame() |
4 | wait( 5 ) |
5 | Humanoid:MoveTo(Vector 3. new(goal.Position)) |
6 |
7 | model:SetPrimaryPartCFrame(cframe * CFrame.Angles( 0 , math.rad(- 90 ), 0 )) |
I fixed it i put a wait in between ~~~~~~~~~~~~~~~~~ local Humanoid = script.Parent.Humanoid local Torso = script.Parent.Torso local goal = game.Workspace.Goal local model = script.Parent wait(5) Humanoid:MoveTo(goal.Position)
1 | wait( 1 ) |
local cframe = model.PrimaryPart.CFrame
model:SetPrimaryPartCFrame(cframe * CFrame.Angles(0, math.rad(-90), 0))
~~~~~~~~~~~~~~~~~