You can animate a tool.
You will need:
Some Scripting knowledge
A tool you would like to animate
To start off:
You need to take all of the baseparts (interact-able objects, e,g part, wedge, sphere, not scripts, values ect) in a model. One of the parts need to be called "FakeHandle" , this will be where you hold it. If you already have a part called Handle rename it to FakeHandle. Copy the fakehandle into workspace, as it is needed later.
Select the primary part of the model as FakeHandle.
Now you need an Animation Controller, unfortunately you cannot insert it right into the model straight away so you have to create it via script.
Insert a normal script into workspace.
put this script inside it:
1 | local a = Instance.new( "AnimationController" ) |
2 | a.Parent = game.Workspace |
Play the game, open workspace and copy the animation controller.
Stop playing the game.
Delete the script.
Paste the Animation Controller into the model.
Call it AC.
Then use the custom character creator plugin to make the rig (tool).
CUSTOM CHARACTER CREATOR.
If you don't know how to make a rig, I recommend you watch this video, Please keep in mind YOU DO NOT NEED A HUMANOID ROOT PART. Its not using a humanoid.
video
Then download the animation plugin.
here...
make some animations.... lol
Then the scripting...
Create a tool and put the model you made earlier in the tool. Call the model "MovingParts".
Insert a part into the tool called"Handle", DO NOT insert it into the model. The handle needs to be in the same position as the "Fake Handle"., it doesn't have to be perfect, though.
Insert a Local Script into the tool.
use this script...:
02 | local Gun = script.Parent |
04 | local AnimGun = Gun:WaitForChild( "MovingParts" ) |
07 | local FHandle = AnimGun:WaitForChild( "FakeHandle" ) |
09 | local RHandle = Gun:WaitForChild( "Handle" ) |
11 | local guntable = AnimGun:GetChildren() |
14 | local HandleWeld = Instance.new( "Weld" ,RHandle) |
15 | HandleWeld.Part 0 = RHandle |
16 | HandleWeld.C 0 = RHandle.CFrame:inverse() |
17 | HandleWeld.Part 1 = FHandle |
18 | HandleWeld.C 1 = FHandle.CFrame:inverse() |
22 | local AnimationController = AnimGun:WaitForChild( "AC" ) |
23 | local Animation = Instance.new( "Animation" ) |
25 | local LoadAnimation = AnimationController:LoadAnimation(Animation) |
26 | print ( "Loaded the Animation" ) |
27 | function onKeyPress(actionName, userInputState, inputObject) |
28 | if userInputState = = Enum.UserInputState.Begin then |
30 | print ( "Animation played" ) |
34 | game.ContextActionService:BindAction( "keyPress" , onKeyPress, false , Enum.KeyCode.R) |
should work