attempt to index nil with 'aimSmooth'?
Asked by
2 years ago Edited 2 years ago
DISCLAIMER: Code of Xeradev on YT!
I´m currently working on an FPS with the help of the tutorials of the YT Channel Xeradev. When I added sounds, I got an error. "Players.LumpiMagDich.PlayerScripts.Framework - Client:112: attempt to index nil with 'aimSmooth'". The lines I wrote, edited have nothing to do with the line the error gives me, wich I made days ago, and never had problems with. checked if i did something wrong, but there is nothing I found.already red it means that it is indefinined, but i dont know where my problem is.
01 | if isAiming and framework.viewmodel ~ = nil and framework.module.canAim then |
02 | local offset = framework.viewmodel.AimPart.CFrame:ToObjectSpace(framework.viewmodel.PrimaryPart.CFrame) |
03 | aimCF = aimCF:Lerp(offset, framework.module.aimSmooth) |
04 | currentSwayAMT = aimSwayAMT |
06 | local offset = CFrame.new() |
07 | aimCF = aimCF:Lerp(offset, framework.module.aimSmooth) <- this is the error line |
08 | currentSwayAMT = swayAMT |
how do i fix it? all i red under the video was to change from r6 to r15, which i did to my character, but i really dont know what to do. If the problem is rlly dum, i'm sorry, started with Lua only a week ago, so i need everything to help me. thanks
the code I recently added:
01 | if viewmodelFolder:FindFirstChild(Item) then |
02 | framework.viewmodel = viewmodelFolder:FindFirstChild(Item):Clone() |
03 | framework.viewmodel.Parent = camera |
05 | fireAnim = Instance.new( "Animation" ) |
06 | fireAnim.Parent = framework.viewmodel |
07 | fireAnim.Name = "Fire" |
08 | fireAnim.AnimationId = framework.module.fireAnim |
09 | fireAnim = framework.viewmodel.AnimationController.Animator:LoadAnimation(fireAnim) |
11 | fireSound = Instance.new( "Sound" ) |
12 | fireSound.Parent = character.UpperTorso |
13 | fireSound.Name = "Fire" |
14 | fireSound.SoundId = framework.module.fireSound.SoundId |
and also
1 | if input.UserInputType = = Enum.UserInputType.MouseButton 1 then |
2 | if character and framework.viewmodel and framework.module then |
4 | character.UpperTorso.Fire:Play() |
if that is important