My gun propells my players forward uncontrollably?
Asked by
5 years ago Edited 5 years ago
Hello!
So recently, I've been trying to make an FPS. Everything's going well, but I have one issue: My players get propelled at speeds (ranging from walking speed to flying through the sky) uncontrollably (until I come out of First Person).
I've made the arms un-collidable (if that's a word) as well as the gun. I'm using CFrames to move the arms, gun, etc.
I would add a video but my computer is being odd. Sorry.
Thanks for considering,
MaximussDev.
EDIT: Main script.
01 | repeat wait( 1 ) until game.Players.LocalPlayer.Character:FindFirstChildOfClass( "Tool" ) and game.Workspace.CurrentCamera.CameraType ~ = Enum.CameraType.Scriptable |
03 | local camera = game.Workspace.CurrentCamera |
04 | local viewModel = game.ReplicatedStorage.viewModel:Clone() |
05 | viewModel.Parent = camera |
06 | local weapon = game.ReplicatedStorage.Weapons [ game.Players.LocalPlayer.Character:FindFirstChildOfClass( "Tool" ).Name ] :Clone() |
07 | weapon.Parent = viewModel |
09 | for _, piece in pairs (game.Players.LocalPlayer.Character:FindFirstChildOfClass( "Tool" ):GetChildren()) do |
10 | if piece:IsA( "Part" ) or piece:IsA( "UnionOperation" ) then |
11 | piece.Transparency = 1 |
15 | local joint = Instance.new( "Motor6D" ); |
16 | joint.C 0 = CFrame.new( 1 , - 1.5 , - 2 ); |
17 | joint.Part 0 = viewModel.Head; |
18 | joint.Part 1 = weapon.Handle; |
19 | joint.Parent = viewModel.Head; |
21 | local function updateArm(key) |
22 | local shoulder = viewModel [ key .. "UpperArm" ] [ key .. "Shoulder" ] |
23 | local cf = weapon [ key ] .CFrame * CFrame.Angles(math.pi/ 2 , 0 , 0 ) * CFrame.new( 0 , 1.5 , 0 ) |
24 | shoulder.C 1 = cf:inverse() * shoulder.Part 0. CFrame * shoulder.C 0 |
27 | local function onUpdate(dt) |
28 | viewModel.Head.CFrame = camera.CFrame |
34 | local offset = weapon.Handle.CFrame:inverse() * weapon.Aim.CFrame; |
36 | local function aimDownSights(aiming) |
37 | local start = joint.C 1 ; |
38 | local goal = aiming and joint.C 0 * offset or CFrame.new(); |
40 | aimCount = aimCount + 1 ; |
41 | local current = aimCount; |
43 | if (current ~ = aimCount) then break ; end |
44 | game:GetService( "RunService" ).RenderStepped:Wait(); |
45 | joint.C 1 = start:Lerp(goal, t/ 100 ); |
49 | local function onInputBegan(input, process) |
50 | if (process) then return ; end |
51 | if (input.UserInputType = = Enum.UserInputType.MouseButton 2 ) then |
56 | local function onInputEnded(input, process) |
57 | if (process) then return ; end |
58 | if (input.UserInputType = = Enum.UserInputType.MouseButton 2 ) then |
63 | game:GetService( "UserInputService" ).InputBegan:Connect(onInputBegan); |
64 | game:GetService( "UserInputService" ).InputEnded:Connect(onInputEnded); |
66 | game:GetService( "RunService" ).RenderStepped:Connect(onUpdate) |
Used from a tutorial by @EgoMoose.