Im trying to force one player to go left. I tried using CFrame, but that makes the player go left in the games perspective. I want the player to go left through his. Is there a way to do this? Here is my script:
1 | game.ReplicatedStorage.Roll.OnServerEvent:Connect( function (plr, char) |
2 | local uppertorso = char.UpperTorso |
3 | char.CFrame = char.CFrame - Vector 3. new( 10 , 0 , 0 ) |
4 | end ) |
Hey Captain,
01 | local players = game:GetService( "Players" ) |
02 | local player = players.LocalPlayer |
03 | local uis = game:GetService( "UserInputService" ) |
04 |
05 | uis.InputBegan:Connect( function (obj, gp) |
06 | if obj.KeyCode = = Enum.KeyCode.Z and not gp then |
07 | local char = player.Character or player.CharacterAdded:Wait() -- Gets the character of the player. |
08 | local torso = char:FindFirstChild( "HumanoidRootPart" ) -- The humanoid root part of the cahracter |
09 | local pos = (torso.CFrame:pointToWorldSpace(Vector 3. new(- 5 , 0 , 0 ))) -- A position from the world space, 5 studs to the left of the humanoid root part. |
10 |
11 | ------------- METHOD ONE ------------- |
12 |
13 | local bp = Instance.new( "BodyPosition" ) -- Make a Body Position to move the player. |
14 | bp.MaxForce = Vector 3. new( math.huge , math.huge , math.huge ) -- Set the max force to infinity |
15 | bp.Position = pos -- Set the position of the body position to move towards. |
Thanks,
Best regards,
KingLoneCat
just use CFrame.RightVector
and multiply it by a negative number, since it'll be the opposite of RightVector, as theres no LeftVector
. also why are use creating a variable thats defined as the player's UpperTorso, and not using it.
1 | game.ReplicatedStorage.Roll.OnServerEvent:Connect( function (plr, char) |
2 | local uppertorso = char.UpperTorso |
3 |
4 | uppertorso.CFrame = uppertorso.CFrame + uppertorso.CFrame.RightVector * - 10 |
5 | end ) |
also you cant send instances through arguments in OnServerEvent, so just set the cframe on the client, because it would replicate. or if you wanted it to move to the left instead of teleporting use MoveTo()
.
1 | character.Humanoid:MoveTo(character.HumanoidRootPart.CFrame.Position + character.HumanoidRootPart.CFrame.RightVector * - 10 ) |