Answered by
6 years ago Edited 6 years ago
In order to move the object in the direction the player is facing, you can use the lookVector
property of CFrames.
One Local Script example would be:
1 | local player = game.Players.LocalPlayer |
3 | game:GetService( "UserInputService" ).InputBegan:Connect( function (inputObject, gameProcessedEvent) |
4 | if inputObject.KeyCode = = Enum.KeyCode.W then |
5 | workspace.Cloud.BodyVelocity.Velocity = player.Character.HumanoidRootPart.CFrame.lookVector |
If you want this event to occur on the server, you would need to use Remote Events
Note that the above function takes into account the direction the player was facing when key "w" was pressed and doesn't follow the player's change in direction.
In order to make sure the block was facing the player at all times until "w" was not pressed, you could use:
01 | local player = game.Players.LocalPlayer |
04 | game:GetService( "UserInputService" ).InputBegan:Connect( function (inputObject, gameProcessedEvent) |
05 | if inputObject.KeyCode = = Enum.KeyCode.W then |
07 | workspace.Cloud.BodyVelocity.Velocity = (player.Character.HumanoidRootPart.CFrame.lookVector) * 1 |
13 | game:GetService( "UserInputService" ).InputEnded:Connect( function (inputObject, gameProcessedEvent) |
14 | if inputObject.KeyCode = = Enum.KeyCode.W then |
16 | workspace.Cloud.BodyVelocity.Velocity = Vector 3. new( 0 , 0 , 0 ) |
Closed as Not Constructive by TheeDeathCaster
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?