WHAT IS A TOOL?
Tools are objects that a Humanoid object can equip. For players, they are stored in a Backpack object parented to a Player object.
In-game, players may have multiple tools which appear as icons at the bottom of the screen.
Equipping a tool moves it from the Backpack and into a player’s Character|character model in the Workspace. By default, tools are held in the right hand and have a handle in them, which is a Part named “Handle” inside (though one is not required if Tool.RequiresHandle is off). Tools that are to be provided to (re)spawning players ought to be stored in the StarterPack.
On desktop, pressing a number key (1, 2, 3…) will equip a tool. Equipped tools can be dropped into the Workspace by pressing Backspace.
It’s recommended that you turn Tool.CanBeDropped off so it is not possible to drop a tool, die, respawn and drop again to duplicate tools. On gamepads, LB and RB buttons will equip tools. You can disable activation via left click (or right trigger on gamepad) by setting Tool.ManualActivationOnly on. Doing so requires that you call Activate yourself through some sort of other user input.
Tools are not the only way to capture user input.
You can also use ContextActionService, UserInputService or Player:GetMouse If you need a Tool to have multiple actions, such as pressing a key while the Tool is equipped.
You should use ContextActionService’s BindAction and UnbindAction in the Equipped and Unequipped events, respectively. Use a LocalScript send these actions to the server via. a RemoteFunction inside the Tool.
-- Some of it from the wiki
Basic Tool Functions;
.Activated
.Equipped
.Unequipped
.Deactivated
All of these samples are events, which are most commonly used, or another-words always used in tool events;
WHAT EVENT YOU NEED;
The Activated event fires when the player clicks while a Tool is equipped.
This function is used to perform an action when the player uses the tool. For instance, when the player clicks while a Rocket Launcher tool is equipped, the activated event executes the code to create and launch a rocket.
TOOL; CODE SAMPLE;
Insert a script in the Tool, paste the script below which will determine the current state;
1 | local Tool = script.Parent |
3 | Tool.Activated:Connect( function () |
4 | print ( "I was clicked!" ) |
WHAT IS AN ANIMATION?
Animations truly bring a game to life. From easily-accessible character animations in the catalog to detailed animations built with the Animation Editor, Roblox offers a variety of powerful animation options.
By default, Roblox player characters include common animations like running, climbing, swimming, and jumping. However, these animations are not locked in place — if desired, you can replace them with catalog animations or even load in your own custom animations.
CUSTOM ANIMATIONS
To use a custom animation exported from the Animation Editor, locate its asset ID as follows:
- Open the Animations section of the Create page.
- Locate the desired animation and click it.
- Copy its ID from the URL in your browser.
Load Animation
Controls the playback of an animation on a Humanoid or AnimationController. This object cannot be created, instead it is returned by the Humanoid:LoadAnimation method.
SCRIPT;
I'm assuming you already have your animation;
Insert a local-script in your tool;
01 | local Tool = script.Parent |
02 | local Player = game.Players.LocalPlayer |
04 | repeat wait() until Player.Character ~ = nil |
07 | local Animation = script.Parent.OnClick |
09 | if Player.Character then |
10 | local Character = Player.Character |
12 | if Character:FindFirstChild( "Humanoid" ) then |
13 | local Hum = Character.Humanoid |
15 | local AnimationTrack = Hum:LoadAnimation(Animation) |
16 | AnimationTrack.Priority = Enum.AnimationPriority.Action |
24 | Tool.Activated:Connect(Activate) |