Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

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.

01repeat wait(1) until game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") and game.Workspace.CurrentCamera.CameraType ~= Enum.CameraType.Scriptable
02 
03local camera = game.Workspace.CurrentCamera
04local viewModel = game.ReplicatedStorage.viewModel:Clone()
05viewModel.Parent = camera
06local weapon = game.ReplicatedStorage.Weapons[game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name]:Clone()
07weapon.Parent = viewModel
08 
09for _, 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
12    end
13end
14 
15local joint = Instance.new("Motor6D");
View all 66 lines...

Used from a tutorial by @EgoMoose.

0
Can you post the script that spawns/Adds force to the bullet? Leamir 3138 — 5y
0
Yup, for sure! Sorry about that. The only thing is, the bullets don't cause it, because it's only when it's in First Person. Here's the script (added to the main post) that gives the player the first person gun and arms, etc. MaximussDev 86 — 5y

1 answer

Log in to vote
1
Answered by
Gojinhan 353 Moderation Voter
5 years ago

Make every part in the tool massless. I hate that you can have can collide off and your player will still glitch with high part count tools. It's annoying but setting massless to true for each part will completely solve this bug.

Ad

Answer this question