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

How can I change weapons by scrolling?

Asked by 10 years ago
01game.Players.PlayerAdded:connect(function(Player)
02ting = true
03Mouse = Player:GetMouse()
04function scroll()
05    if ting == true then
06    ting = false
07    --change weapon
08    wait (1)
09    ting = true
10    end
11end)
12 
13Mouse.WheelBackward:connect(scroll)
14Mouse.WheelForward:connect(scroll)

NOTE: I only need 2 weapons, but I'd like to know if I need to do something different for 3,4,etc...

1
Awesome idea! DewnOracle 115 — 10y

1 answer

Log in to vote
5
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
10 years ago

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

01local tools = {} --Tool table
02local plr = game.Players.LocalPlayer --Player
03local mouse = plr:GetMouse() --Mouse
04local toolIndex = 1 --Variable for indexing tools table
05 
06repeat wait() until plr.Character --Wait for character
07 
08local char = plr.Character
09 
10function clearTools(c) --Function to remove tools
11    for i,v in pairs(c:GetChildren()) do
12        if v:IsA('Tool') or v:IsA('HopperBin') then
13            v:Destroy()
14        end
15    end
View all 34 lines...
0
Thank you so much. I didn't post this question, but I'm going to use the idea of your code for my script, which I'm creating so that you can use the bumper buttons on a gamepad to equip tools. yumtaste 476 — 10y
0
Thanks! I've been trying to figure out how to force the first tool to be selected when I spawn, but I can't quite figure it out. If you don't mind helping with that. BSIncorporated 640 — 10y
0
Parent it to the character and set the property of the tool 'CanBeDropped' to false(: Goulstem 8144 — 10y
0
I know i'm late but i hope you can answer this. Does this still work properly? I'm desperate for it. eromusics 10 — 5y
Ad

Answer this question