To do this then you should follow these steps:
1) - Make a table
full of all the tools you want the player to have access to
2) - Make a variable for how you'll index the table.
3) - Change the variable according to the WheelForward
and WheelBackward
Events
4) Replace the tools in the character with the WheelForward
and WheelBackward
Events, and index the tool table according to the variable.
Should look something like this;
NOTE: This should be a localscript in StarterGui
02 | local plr = game.Players.LocalPlayer |
03 | local mouse = plr:GetMouse() |
06 | repeat wait() until plr.Character |
08 | local char = plr.Character |
11 | for i,v in pairs (c:GetChildren()) do |
12 | if v:IsA( 'Tool' ) or v:IsA( 'HopperBin' ) then |
18 | function replaceTool(c) |
19 | local tool = tools [ toolIndex ] |
22 | tool:Clone().Parent = c |
26 | mouse.WheelForward:connect( function () |
27 | toolIndex = toolIndex + 1 |
31 | mouse.WheelBackward:connect( function () |
32 | toolIndex = toolIndex - 1 |