Ok, so I managed to do a whole lot of editing to your snippet of code, and I found many things that would go wrong.
Firstly, when you parent a gun, it won't be in Lighting, so if another player tried to switch, it would brake. Instead, I cloned the gun into the player's backpack.
Secondly, parenting and unparenting tools from the character can break some guns made from popular gun makers like manofthelol and TurboFusion. Use the :EquipTool() and :UnequipTools() functions in the Humanoid.
Third, you don't need a loop, you need the if statement inside the WheelBackward and WheelForward events.
Here's what I did to your snippet. I will add comments to describe why I did what I did:
01 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false ) |
02 | local mouse = game.Players.LocalPlayer:GetMouse() |
03 | local char = game.Players.LocalPlayer.Character |
04 | local gun 1 = game.Lighting.Guns.Runner.SniperRifle:Clone() |
05 | local gun 2 = game.Lighting.Guns.Runner.London:Clone() |
06 | local Humanoid = char:WaitForChild( "Humanoid" ) |
07 | gun 1. Parent = game.Players.LocalPlayer.Backpack |
08 | gun 2. Parent = game.Players.LocalPlayer.Backpack |
10 | Humanoid:EquipTool(gun 1 ) |
13 | if gun 1. Parent = = char then |
14 | print ( "Gun1 is parented" ) |
15 | Humanoid:UnequipTools() |
17 | print ( "Gun2 is parented" ) |
18 | Humanoid:EquipTool(gun 2 ) |
19 | elseif gun 2. Parent = = char then |
20 | print ( "Gun2 is parented" ) |
21 | Humanoid:UnequipTools() |
23 | print ( "Gun1 is parented" ) |
24 | Humanoid:EquipTool(gun 1 ) |
28 | mouse.WheelForward:connect(Switch) |
29 | mouse.WheelBackward:connect(Switch) |
I tested this to make sure it would work and this is what happened
I made a LocalScript inside the StarterPack for this to work. If the snippet is from a LocalScript and is in StarterPack then you shouldn't have to worry about that.
Good luck with your future Scripting Adventures!
~lightpower26