this flashlight script is not working and i have no idea why, help
It says PointLight is not a valid member of LocalScript "Players.SpynApple_P.Backpack.LocalScript" - Client - LocalScript:13 but there is a pointlight in players → spynapple_p → backpack → localscript
I’d assume the problem you are running into is that the LocalScript runs before the PointLight loads in a client. I’d suggest using the :WaitForChild() function when referencing the PointLight.
Example:
local PointLight = script:WaitForChild("PointLight")