Uh, so I tried to make a script that would allow me to equip a tool when i press q, however I had some problems with it, I'm also new to scripting so anything would be helpful.
local Player = game.Players.LocalPlayer Mouse = Player:GetMouse()
1 | Mouse.KeyDown:connect( function (Key) |
2 | if (Key:lower() = = "q" ) then |
3 | Player.BackPack.ClassicSword:Equip() |
4 | end |
5 | end ) |